2004-03-11 23:52:43 +00:00
|
|
|
//===-- TargetFrameInfo.cpp - Implement machine frame interface -*- C++ -*-===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-03-11 23:52:43 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-03-11 23:52:43 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Implements the layout of a stack frame on the target machine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetFrameInfo.h"
|
|
|
|
#include <cstdlib>
|
|
|
|
using namespace llvm;
|
|
|
|
|
2006-08-03 18:55:44 +00:00
|
|
|
TargetFrameInfo::~TargetFrameInfo() {
|
2005-02-17 21:40:27 +00:00
|
|
|
}
|