aboutsummaryrefslogtreecommitdiffstats
path: root/tools/opt
diff options
context:
space:
mode:
authorDan Gohman <djg@cray.com>2007-07-30 15:01:09 +0000
committerDan Gohman <djg@cray.com>2007-07-30 15:01:09 +0000
commitb43b4d339df31c9180a2f13e54b967135f338434 (patch)
treefbe8dc8897191214644231b5d6ebdb8cbb47d282 /tools/opt
parentf09560c80cacc7e0a24ad02d3d3246ee49d00db5 (diff)
downloadexternal_llvm-b43b4d339df31c9180a2f13e54b967135f338434.zip
external_llvm-b43b4d339df31c9180a2f13e54b967135f338434.tar.gz
external_llvm-b43b4d339df31c9180a2f13e54b967135f338434.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
Diffstat (limited to 'tools/opt')
-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