summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-05-23 19:27:50 +0000
committerChris Lattner <sabre@nondot.org>2002-05-23 19:27:50 +0000
commit5424e50c6127e0e4f9e001f1ea46b32b0ce06d2c (patch)
tree9c7056fd907c03f641ee46ba15c709049543b138 /tools
parent0fa59061d012c88d22246e70bfa40753457784ca (diff)
downloadllvm-5424e50c6127e0e4f9e001f1ea46b32b0ce06d2c.tar.gz
llvm-5424e50c6127e0e4f9e001f1ea46b32b0ce06d2c.tar.bz2
llvm-5424e50c6127e0e4f9e001f1ea46b32b0ce06d2c.tar.xz
No need to run dce with adce right behind!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2738 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/gccas/gccas.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp
index c2f5a1838e..3ddef9ad54 100644
--- a/tools/gccas/gccas.cpp
+++ b/tools/gccas/gccas.cpp
@@ -87,7 +87,6 @@ int main(int argc, char **argv) {
// Run instcombine after redundancy elimination to exploit opportunities
// opened up by them.
Passes.add(createInstructionCombiningPass());
- Passes.add(createDeadCodeEliminationPass()); // Remove Dead code/vars
Passes.add(createAggressiveDCEPass()); // SSA based 'Agressive DCE'
Passes.add(createCFGSimplificationPass()); // Merge & remove BBs
}