forked from OSchip/llvm-project
parent
23d55f2547
commit
a1d312c6ea
|
@ -82,7 +82,8 @@ X86TargetMachine::X86TargetMachine(const Module &M,
|
|||
Subtarget(M, FS),
|
||||
FrameInfo(TargetFrameInfo::StackGrowsDown,
|
||||
Subtarget.getStackAlignment(), -4),
|
||||
JITInfo(*this) {}
|
||||
JITInfo(*this) {
|
||||
}
|
||||
|
||||
|
||||
// addPassesToEmitFile - We currently use all of the same passes as the JIT
|
||||
|
@ -176,8 +177,6 @@ void X86JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
|
|||
else
|
||||
PM.add(createX86ISelDag(TM));
|
||||
|
||||
// FIXME: Add SSA based peephole optimizer here.
|
||||
|
||||
// Print the instruction selected machine code...
|
||||
if (PrintMachineCode)
|
||||
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
||||
|
|
Loading…
Reference in New Issue