diff options
author | Geoff Berry <gberry@codeaurora.org> | 2016-06-14 21:19:40 +0000 |
---|---|---|
committer | Geoff Berry <gberry@codeaurora.org> | 2016-06-14 21:19:40 +0000 |
commit | efb0dd176a04f6d8142d217719724416ed62a063 (patch) | |
tree | ede7b8de09e10764af4053939bb2663677c83544 | |
parent | a8bf23d656ec312d0306a24be1eb1208b1aa84ee (diff) | |
download | bcm5719-llvm-efb0dd176a04f6d8142d217719724416ed62a063.tar.gz bcm5719-llvm-efb0dd176a04f6d8142d217719724416ed62a063.zip |
[MemorySSA] Set CFGOnly correctly for MemorySSAWrapperPass
Subscribers: mcrosier, llvm-commits
Differential Revision: http://reviews.llvm.org/D21344
llvm-svn: 272712
-rw-r--r-- | llvm/lib/Transforms/Utils/MemorySSA.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Utils/MemorySSA.cpp b/llvm/lib/Transforms/Utils/MemorySSA.cpp index 85d21b1007e..26c4931c78e 100644 --- a/llvm/lib/Transforms/Utils/MemorySSA.cpp +++ b/llvm/lib/Transforms/Utils/MemorySSA.cpp @@ -47,11 +47,12 @@ STATISTIC(NumClobberCacheLookups, "Number of Memory SSA version cache lookups"); STATISTIC(NumClobberCacheHits, "Number of Memory SSA version cache hits"); STATISTIC(NumClobberCacheInserts, "Number of MemorySSA version cache inserts"); -INITIALIZE_PASS_BEGIN(MemorySSAWrapperPass, "memoryssa", "Memory SSA", true, +INITIALIZE_PASS_BEGIN(MemorySSAWrapperPass, "memoryssa", "Memory SSA", false, true) INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) -INITIALIZE_PASS_END(MemorySSAWrapperPass, "memoryssa", "Memory SSA", true, true) +INITIALIZE_PASS_END(MemorySSAWrapperPass, "memoryssa", "Memory SSA", false, + true) namespace llvm { |