Remove a FIXME comment that wasn't removed when the code it accompanied
authorDan Gohman <gohman@apple.com>
Mon, 30 Jul 2007 15:01:09 +0000 (15:01 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 30 Jul 2007 15:01:09 +0000 (15:01 +0000)
was removed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40591 91177308-0d34-0410-b5e6-96231b3b80d8

tools/opt/opt.cpp

index 24f6b7978df307d4ccbf9f74e1df59e9692f9869..7847b77ae71c025a697bf1198c53d02cac30109b 100644 (file)
@@ -267,7 +267,6 @@ void AddStandardCompilePasses(PassManager &PM) {
   addPass(PM, createTailDuplicationPass());      // Simplify cfg by copying code
   addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
-  // FIXME: Temporary!
   addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
   addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
   addPass(PM, createCondPropagationPass());      // Propagate conditionals