From: Geoff Berry Date: Tue, 14 Jun 2016 21:19:40 +0000 (+0000) Subject: [MemorySSA] Set CFGOnly correctly for MemorySSAWrapperPass X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc68eca2c4f08ef8267b8d3836d94eed7ba3b178;p=llvm [MemorySSA] Set CFGOnly correctly for MemorySSAWrapperPass Subscribers: mcrosier, llvm-commits Differential Revision: http://reviews.llvm.org/D21344 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272712 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/MemorySSA.cpp b/lib/Transforms/Utils/MemorySSA.cpp index 85d21b1007e..26c4931c78e 100644 --- a/lib/Transforms/Utils/MemorySSA.cpp +++ b/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 {