aboutsummaryrefslogtreecommitdiffstats
path: root/tools/opt
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-08-01 06:36:51 +0000
committerOwen Anderson <resistor@mac.com>2007-08-01 06:36:51 +0000
commit59bf86c21b8259155a1f124458dbd221697ad9f7 (patch)
tree6eba67040ce35063f11c185edddcbf6522b5399b /tools/opt
parent15749cf4cac613e6fd715ef18772e6c4535e8258 (diff)
downloadexternal_llvm-59bf86c21b8259155a1f124458dbd221697ad9f7.zip
external_llvm-59bf86c21b8259155a1f124458dbd221697ad9f7.tar.gz
external_llvm-59bf86c21b8259155a1f124458dbd221697ad9f7.tar.bz2
Rename FastDSE to just DSE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40668 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt')
-rw-r--r--tools/opt/opt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp
index 7847b77..4eca308 100644
--- a/tools/opt/opt.cpp
+++ b/tools/opt/opt.cpp
@@ -290,7 +290,7 @@ void AddStandardCompilePasses(PassManager &PM) {
addPass(PM, createInstructionCombiningPass());
addPass(PM, createCondPropagationPass()); // Propagate conditionals
- addPass(PM, createFastDeadStoreEliminationPass()); // Delete dead stores
+ addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores
addPass(PM, createAggressiveDCEPass()); // SSA based 'Aggressive DCE'
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations