blob: e6f15b119db878752c233d631a4b070ba3189ce3 [file] [log] [blame]
Misha Brukman505a0832004-03-11 23:52:43 +00001//===-- TargetFrameInfo.cpp - Implement machine frame interface -*- C++ -*-===//
Misha Brukman10468d82005-04-21 22:55:34 +00002//
Misha Brukman505a0832004-03-11 23:52:43 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman10468d82005-04-21 22:55:34 +00007//
Misha Brukman505a0832004-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 Brukman505a0832004-03-11 23:52:43 +000016using namespace llvm;
17
Chris Lattnerfef2c5f2006-08-03 18:55:44 +000018TargetFrameInfo::~TargetFrameInfo() {
Reid Spencerff7b16c2005-04-25 02:55:55 +000019}