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:
0417feb
)
Revert the last patch. We really do need SimplyCFG.
author
Reid Spencer
<rspencer@reidspencer.com>
Sat, 11 Dec 2004 03:03:54 +0000
(
03:03
+0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Sat, 11 Dec 2004 03:03:54 +0000
(
03:03
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18787
91177308
-0d34-0410-b5e6-
96231b3b80d8
tools/llvm-ld/Optimize.cpp
patch
|
blob
|
history
diff --git
a/tools/llvm-ld/Optimize.cpp
b/tools/llvm-ld/Optimize.cpp
index c676809f7711cf45951df28ebb9ed486e24a8000..5dc9424be9036b90d137b82374ffa2c2ddb95a26 100644
(file)
--- a/
tools/llvm-ld/Optimize.cpp
+++ b/
tools/llvm-ld/Optimize.cpp
@@
-163,6
+163,9
@@
void Optimize(Module* M) {
// Cleanup and simplify the code after the scalar optimizations.
addPass(Passes, createInstructionCombiningPass());
+ // Delete basic blocks, which optimization passes may have killed...
+ addPass(Passes, createCFGSimplificationPass());
+
// Now that we have optimized the program, discard unreachable functions...
addPass(Passes, createGlobalDCEPass());
}