aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Target/X86/X86TargetMachine.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp
index 970cbd450e..b4de879750 100644
--- a/lib/Target/X86/X86TargetMachine.cpp
+++ b/lib/Target/X86/X86TargetMachine.cpp
@@ -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));