aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-07-30 15:01:09 +0000
committerDan Gohman <gohman@apple.com>2007-07-30 15:01:09 +0000
commitd47cab81b61f7f767248193d5f6cd6ea1918c60f (patch)
treefbe8dc8897191214644231b5d6ebdb8cbb47d282
parentfb71d382471e82a9d064bb7cd0e7a7fee46e61f0 (diff)
downloadexternal_llvm-d47cab81b61f7f767248193d5f6cd6ea1918c60f.zip
external_llvm-d47cab81b61f7f767248193d5f6cd6ea1918c60f.tar.gz
external_llvm-d47cab81b61f7f767248193d5f6cd6ea1918c60f.tar.bz2
Remove a FIXME comment that wasn't removed when the code it accompanied
was removed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40591 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/opt/opt.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp
index 24f6b79..7847b77 100644
--- a/tools/opt/opt.cpp
+++ b/tools/opt/opt.cpp
@@ -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