diff options
| author | Brian Gaeke <gaeke@uiuc.edu> | 2004-01-23 06:39:30 +0000 |
|---|---|---|
| committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-01-23 06:39:30 +0000 |
| commit | f0cc84860295f13f52116ac6b41246322481c09b (patch) | |
| tree | 02d06bca5a3d6c6ba98e11205c7594c2eeb93ee9 /llvm/lib | |
| parent | 4880432af8e3f8f393ddde70638aec12e6703f72 (diff) | |
| download | bcm5719-llvm-f0cc84860295f13f52116ac6b41246322481c09b.tar.gz bcm5719-llvm-f0cc84860295f13f52116ac6b41246322481c09b.zip | |
Add the JITInfo object, accessor & initializer.
llvm-svn: 10972
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp index 3cf8c374e44..27fceba7390 100644 --- a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp @@ -32,7 +32,7 @@ TargetMachine *allocatePowerPCTargetMachine(const Module &M, PowerPCTargetMachine::PowerPCTargetMachine(const Module &M, IntrinsicLowering *IL) : TargetMachine("PowerPC", IL, true, 4, 4, 4, 4, 4), - FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 4) { + FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 4), JITInfo(*this) { } // addPassesToEmitAssembly - We currently use all of the same passes as the JIT |

