diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-09 20:08:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-09 20:08:03 +0000 |
commit | 02e7a86fec281d636a7f1fee7ad92c4c58797509 (patch) | |
tree | 7b985f534441ba03d9b6fc2e4a99cb83c1bd19dc /llvm/lib/Target/MachineFrameInfo.cpp | |
parent | 3c3457ccea90899c3956f7e53d78ca0d1847fa8b (diff) | |
download | bcm5719-llvm-02e7a86fec281d636a7f1fee7ad92c4c58797509.tar.gz bcm5719-llvm-02e7a86fec281d636a7f1fee7ad92c4c58797509.zip |
* Removed extraneous #includes
* Fixed file headers to be consistent with the rest of LLVM
* Other minor fixes
llvm-svn: 3277
Diffstat (limited to 'llvm/lib/Target/MachineFrameInfo.cpp')
-rw-r--r-- | llvm/lib/Target/MachineFrameInfo.cpp | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/llvm/lib/Target/MachineFrameInfo.cpp b/llvm/lib/Target/MachineFrameInfo.cpp index be7feee5eec..0eeacbc2b0a 100644 --- a/llvm/lib/Target/MachineFrameInfo.cpp +++ b/llvm/lib/Target/MachineFrameInfo.cpp @@ -1,22 +1,14 @@ -// $Id$ -*-c++-*- -//*************************************************************************** -// File: -// MachineFrameInfo.cpp +//===-- MachineFrameInfo.cpp-----------------------------------------------===// // -// Purpose: -// Interface to layout of stack frame on target machine. -// Most functions of class MachineFrameInfo have to be machine-specific -// so there is little code here. +// Interface to layout of stack frame on target machine. Most functions of +// class MachineFrameInfo have to be machine-specific so there is little code +// here. // -// History: -// 4/17/02 - Vikram Adve - Created -//**************************************************************************/ - +//===----------------------------------------------------------------------===// #include "llvm/Target/MachineFrameInfo.h" #include "llvm/CodeGen/MachineCodeForMethod.h" - int MachineFrameInfo::getIncomingArgOffset(MachineCodeForMethod& mcInfo, unsigned argNum) const |