remove an old comment

llvm-svn: 25940
This commit is contained in:
Chris Lattner 2006-02-03 18:59:39 +00:00
parent 23d55f2547
commit a1d312c6ea
1 changed files with 2 additions and 3 deletions

View File

@ -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));