blob: 873d60a1b5ff39a5831eb96c4a17b6b8705983df [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//
Chris Lattnerf3ebc3f2007-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 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}