Misha Brukman | b8bda13 | 2004-03-11 23:52:43 +0000 | [diff] [blame] | 1 | //===-- TargetFrameInfo.cpp - Implement machine frame interface -*- C++ -*-===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
Misha Brukman | b8bda13 | 2004-03-11 23:52:43 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
Misha Brukman | b8bda13 | 2004-03-11 23:52:43 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 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 Brukman | b8bda13 | 2004-03-11 23:52:43 +0000 | [diff] [blame] | 16 | using namespace llvm; |
| 17 | |
Chris Lattner | fb1fcf0 | 2006-08-03 18:55:44 +0000 | [diff] [blame] | 18 | TargetFrameInfo::~TargetFrameInfo() { |
Reid Spencer | a1aad3b | 2005-04-25 02:55:55 +0000 | [diff] [blame] | 19 | } |