summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-11-18 01:34:43 +0000
committerChris Lattner <sabre@nondot.org>2006-11-18 01:34:43 +0000
commit572e238c1485a5aa7b477bce53d5a72cfd4b72ad (patch)
tree9175987c3564865c6558d9be2cec469db4c53abe /llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
parent9ca15c891474e0f7112b5688d480c7c0429dd06d (diff)
downloadbcm5719-llvm-572e238c1485a5aa7b477bce53d5a72cfd4b72ad.tar.gz
bcm5719-llvm-572e238c1485a5aa7b477bce53d5a72cfd4b72ad.zip
make sure to safe LR8 in the right stack slot for PPC64
llvm-svn: 31839
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r--llvm/lib/Target/PowerPC/PPCTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
index 954d15c5b69..dde998f5a7f 100644
--- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
+++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
@@ -83,7 +83,7 @@ PPCTargetMachine::PPCTargetMachine(const Module &M, const std::string &FS,
bool is64Bit)
: Subtarget(M, FS, is64Bit),
DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this),
- FrameInfo(*this, false), JITInfo(*this, is64Bit), TLInfo(*this),
+ FrameInfo(*this, is64Bit), JITInfo(*this, is64Bit), TLInfo(*this),
InstrItins(Subtarget.getInstrItineraryData()) {
if (getRelocationModel() == Reloc::Default)
OpenPOWER on IntegriCloud