summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/LoopDeletion.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2010-10-19 20:08:44 +0000
committerOwen Anderson <resistor@mac.com>2010-10-19 20:08:44 +0000
commit205942a4a55d568e93480fc22d25cc7dac525fb7 (patch)
treeb3679b922a725b7a7fbeda0216684c14298fd800 /lib/Transforms/Scalar/LoopDeletion.cpp
parent575cd148cedec66af0adc266c5d7ecdbe1641d7e (diff)
downloadllvm-205942a4a55d568e93480fc22d25cc7dac525fb7.tar.gz
llvm-205942a4a55d568e93480fc22d25cc7dac525fb7.tar.bz2
llvm-205942a4a55d568e93480fc22d25cc7dac525fb7.tar.xz
Passes do not need to recursively initialize passes that they preserve, if
they do not also require them. This allows us to reduce inter-pass linkage dependencies. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopDeletion.cpp')
-rw-r--r--lib/Transforms/Scalar/LoopDeletion.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopDeletion.cpp b/lib/Transforms/Scalar/LoopDeletion.cpp
index ba98594787..cf68ddda7a 100644
--- a/lib/Transforms/Scalar/LoopDeletion.cpp
+++ b/lib/Transforms/Scalar/LoopDeletion.cpp
@@ -64,7 +64,6 @@ INITIALIZE_PASS_DEPENDENCY(LoopInfo)
INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
INITIALIZE_PASS_DEPENDENCY(LCSSA)
-INITIALIZE_PASS_DEPENDENCY(DominanceFrontier)
INITIALIZE_PASS_END(LoopDeletion, "loop-deletion",
"Delete dead loops", false, false)