blob: 873d60a1b5ff39a5831eb96c4a17b6b8705983df [file] [log] [blame]
Misha Brukmanb8bda132004-03-11 23:52:43 +00001//===-- TargetFrameInfo.cpp - Implement machine frame interface -*- C++ -*-===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
Misha Brukmanb8bda132004-03-11 23:52:43 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
Misha Brukmanb8bda132004-03-11 23:52:43 +00008//===----------------------------------------------------------------------===//
9//
10// Implements the layout of a stack frame on the target machine.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Target/TargetFrameInfo.h"
15#include <cstdlib>
Misha Brukmanb8bda132004-03-11 23:52:43 +000016using namespace llvm;
17
Chris Lattnerfb1fcf02006-08-03 18:55:44 +000018TargetFrameInfo::~TargetFrameInfo() {
Reid Spencera1aad3b2005-04-25 02:55:55 +000019}