summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2006-08-29 02:30:59 +0000
committerNate Begeman <natebegeman@mac.com>2006-08-29 02:30:59 +0000
commit18f0329cfc62b3edac2f13bc3a0a3ac8120bf9c4 (patch)
treead5e8081243fd72e83b4a1fa94ba5963e7603391 /llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
parent0b4e05a28c2cdfa6223033307ecc679d7eb4439b (diff)
downloadbcm5719-llvm-18f0329cfc62b3edac2f13bc3a0a3ac8120bf9c4.tar.gz
bcm5719-llvm-18f0329cfc62b3edac2f13bc3a0a3ac8120bf9c4.zip
Make ppc64 jit kinda work right. About 2/3 of Olden passes with this,
there are clearly some encoding bugs lurking in there somewhere. llvm-svn: 29949
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 e360f37f3a6..51586dc85bb 100644
--- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
+++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
@@ -87,7 +87,7 @@ PPCTargetMachine::PPCTargetMachine(const Module &M, const std::string &FS,
bool is64Bit)
: TargetMachine("PowerPC"), Subtarget(M, FS, is64Bit),
DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this),
- FrameInfo(*this, false), JITInfo(*this), TLInfo(*this),
+ FrameInfo(*this, false), JITInfo(*this, is64Bit), TLInfo(*this),
InstrItins(Subtarget.getInstrItineraryData()) {
if (getRelocationModel() == Reloc::Default)
OpenPOWER on IntegriCloud