diff options
author | Nate Begeman <natebegeman@mac.com> | 2005-10-16 05:39:50 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2005-10-16 05:39:50 +0000 |
commit | 21e463b2bf864671a87ebe386cb100ef9349a540 (patch) | |
tree | 66837a69bdb67333bffe2b5c6767954f5771f411 /lib/Target/PowerPC/PPCFrameInfo.h | |
parent | 5024d93c8b3bde57e906c0325573ed8d3b7061fd (diff) |
More PPC32 -> PPC changes, as well as merging some classes that were
redundant after the change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23759 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCFrameInfo.h')
-rw-r--r-- | lib/Target/PowerPC/PPCFrameInfo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/PowerPC/PPCFrameInfo.h b/lib/Target/PowerPC/PPCFrameInfo.h index d1bae8b1aa..40305be78e 100644 --- a/lib/Target/PowerPC/PPCFrameInfo.h +++ b/lib/Target/PowerPC/PPCFrameInfo.h @@ -1,4 +1,4 @@ -//===-- PowerPCFrameInfo.h - Define TargetFrameInfo for PowerPC -*- C++ -*-===// +//===-- PPCFrameInfo.h - Define TargetFrameInfo for PowerPC -----*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -8,7 +8,7 @@ //===----------------------------------------------------------------------===// // // -//---------------------------------------------------------------------------- +//===----------------------------------------------------------------------===// #ifndef POWERPC_FRAMEINFO_H #define POWERPC_FRAMEINFO_H @@ -19,12 +19,12 @@ namespace llvm { -class PowerPCFrameInfo: public TargetFrameInfo { +class PPCFrameInfo: public TargetFrameInfo { const TargetMachine &TM; std::pair<unsigned, int> LR[1]; public: - PowerPCFrameInfo(const TargetMachine &tm, bool LP64) + PPCFrameInfo(const TargetMachine &tm, bool LP64) : TargetFrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0), TM(tm) { LR[0].first = PPC::LR; LR[0].second = LP64 ? 16 : 8; |