diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-08-12 18:10:45 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-08-12 18:10:45 +0000 |
commit | 19ac7d5b299af976ea25b5d257411e690c6e0438 (patch) | |
tree | b415320adc962eadb776b18331509c65a418d3d6 /llvm/lib/Analysis/MemoryDependenceAnalysis.cpp | |
parent | cc45ee9a636f9a85ce26b3505fc80cc319b28ca5 (diff) | |
download | llvm-19ac7d5b299af976ea25b5d257411e690c6e0438.zip llvm-19ac7d5b299af976ea25b5d257411e690c6e0438.tar.gz llvm-19ac7d5b299af976ea25b5d257411e690c6e0438.tar.bz2 |
[PM/AA] Add missing static dependency edges from DSE and memdep to TLI.
I forgot to add these in r244780 and r244778. Sorry about that.
Also order the static dependencies in a lexicographical order.
llvm-svn: 244787
Diffstat (limited to 'llvm/lib/Analysis/MemoryDependenceAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/MemoryDependenceAnalysis.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp b/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp index ff78f6e..decba79 100644 --- a/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -65,8 +65,9 @@ char MemoryDependenceAnalysis::ID = 0; // Register this pass... INITIALIZE_PASS_BEGIN(MemoryDependenceAnalysis, "memdep", "Memory Dependence Analysis", false, true) -INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) INITIALIZE_AG_DEPENDENCY(AliasAnalysis) +INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) +INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) INITIALIZE_PASS_END(MemoryDependenceAnalysis, "memdep", "Memory Dependence Analysis", false, true) |