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 | 179cdfb5c844005ed94409e9405473029f2296a6 (patch) | |
tree | a10f8d5fa5f0467d140c23aeab84a7c86fa9b02c /lib/Target/MachineFrameInfo.cpp | |
parent | b91b31c12df168816702a5e58ecdc56031b27ef6 (diff) |
* Removed extraneous #includes
* Fixed file headers to be consistent with the rest of LLVM
* Other minor fixes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MachineFrameInfo.cpp')
-rw-r--r-- | lib/Target/MachineFrameInfo.cpp | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/lib/Target/MachineFrameInfo.cpp b/lib/Target/MachineFrameInfo.cpp index be7feee5ee..0eeacbc2b0 100644 --- a/lib/Target/MachineFrameInfo.cpp +++ b/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 |