Unbreak JIT

llvm-svn: 50173
This commit is contained in:
Anton Korobeynikov 2008-04-23 18:26:03 +00:00
parent 244a615291
commit 74178d02d1

View File

@ -224,6 +224,10 @@ bool LLVMTargetMachine::addPassesToEmitMachineCode(PassManagerBase &PM,
if (EnableSinking)
PM.add(createMachineSinkingPass());
// Run pre-ra passes.
if (addPreRegAlloc(PM, Fast) && PrintMachineCode)
PM.add(createMachineFunctionPrinterPass(cerr));
// Perform register allocation to convert to a concrete x86 representation
PM.add(createRegisterAllocator());