projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fa5906
)
No need to run dce with adce right behind!
author
Chris Lattner
<sabre@nondot.org>
Thu, 23 May 2002 19:27:50 +0000
(19:27 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Thu, 23 May 2002 19:27:50 +0000
(19:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2738
91177308
-0d34-0410-b5e6-
96231b3b80d8
tools/gccas/gccas.cpp
patch
|
blob
|
history
diff --git
a/tools/gccas/gccas.cpp
b/tools/gccas/gccas.cpp
index c2f5a1838e2f4d1a634067a3fa027f99562ecd7b..3ddef9ad541b690507d77df8d9f111a115bcd569 100644
(file)
--- 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
}