diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-02-27 02:55:29 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-02-27 02:55:29 +0000 |
commit | 5d7ce57c13ba3f36d4b081214b12e837acad2e4b (patch) | |
tree | 604306c8cdb985ce783d811200fd80613b7a2bf2 /llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h | |
parent | 8cd69de23e6ae673739910cb7fd7425cd47d7261 (diff) | |
download | bcm5719-llvm-5d7ce57c13ba3f36d4b081214b12e837acad2e4b.tar.gz bcm5719-llvm-5d7ce57c13ba3f36d4b081214b12e837acad2e4b.zip |
Backing out Jim's LR spill changes. This was causing llvm-gcc bootstrapping
to infinite loop:
PPCMachineFunctionInfo.h updated: 1.2 -> 1.3
PPCRegisterInfo.cpp updated: 1.110 -> 1.111
PPCRegisterInfo.h updated: 1.28 -> 1.29
llvm-svn: 34652
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h b/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h index e227456e635..b3e10176d23 100644 --- a/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h +++ b/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h @@ -26,10 +26,6 @@ private: /// stored. Also used as an anchor for instructions that need to be altered /// when using frame pointers (dyna_add, dyna_sub.) int FramePointerSaveIndex; - - /// UsesLR - Indicates whether LR is used in the current function. - /// - bool UsesLR; public: PPCFunctionInfo(MachineFunction& MF) @@ -38,9 +34,6 @@ public: int getFramePointerSaveIndex() const { return FramePointerSaveIndex; } void setFramePointerSaveIndex(int Idx) { FramePointerSaveIndex = Idx; } - - void setUsesLR(bool U) { UsesLR = U; } - bool usesLR() { return UsesLR; } }; |