diff options
author | Davide Italiano <davide@freebsd.org> | 2016-06-08 13:56:59 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2016-06-08 13:56:59 +0000 |
commit | 2d5ab0a56ae5f4f6822a6dda0fb58dfaef5152ee (patch) | |
tree | 5694c19674ea4075bfb9a03de3537b98091e9fd5 /llvm/lib/Transforms | |
parent | d8d83f47730d2f8cecd25f74774a0ea650549adb (diff) | |
download | bcm5719-llvm-2d5ab0a56ae5f4f6822a6dda0fb58dfaef5152ee.tar.gz bcm5719-llvm-2d5ab0a56ae5f4f6822a6dda0fb58dfaef5152ee.zip |
[PM] LoopSimplify. Remove unneeded pass dependencies. NFCI.
llvm-svn: 272140
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopSimplify.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopSimplify.cpp b/llvm/lib/Transforms/Utils/LoopSimplify.cpp index 63d4a04dd08..5ef7c4aaa2a 100644 --- a/llvm/lib/Transforms/Utils/LoopSimplify.cpp +++ b/llvm/lib/Transforms/Utils/LoopSimplify.cpp @@ -763,9 +763,6 @@ INITIALIZE_PASS_BEGIN(LoopSimplify, "loop-simplify", INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) -INITIALIZE_PASS_DEPENDENCY(BasicAAWrapperPass) -INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass) -INITIALIZE_PASS_DEPENDENCY(SCEVAAWrapperPass) INITIALIZE_PASS_END(LoopSimplify, "loop-simplify", "Canonicalize natural loops", false, false) |