From: Brian Gaeke Date: Fri, 23 Jan 2004 06:39:30 +0000 (+0000) Subject: Add the JITInfo object, accessor & initializer. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=954e3164be831712a6df2620870f80e7f58bf644;p=oota-llvm.git Add the JITInfo object, accessor & initializer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10972 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/lib/Target/PowerPC/PowerPCTargetMachine.cpp index 3cf8c374e44..27fceba7390 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