aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PowerPCTargetMachine.cpp
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-01-23 06:39:30 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-01-23 06:39:30 +0000
commit954e3164be831712a6df2620870f80e7f58bf644 (patch)
treeaf6e5fe1017fd98e6d44650a047d8c320b4b452c /lib/Target/PowerPC/PowerPCTargetMachine.cpp
parent7b0cd6d6cb2a3674156df2a1d388a9e3332b5b3e (diff)
Add the JITInfo object, accessor & initializer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10972 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PowerPCTargetMachine.cpp')
-rw-r--r--lib/Target/PowerPC/PowerPCTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/lib/Target/PowerPC/PowerPCTargetMachine.cpp
index 3cf8c374e4..27fceba739 100644
--- a/lib/Target/PowerPC/PowerPCTargetMachine.cpp
+++ b/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