[PATCH] D21344: [MemorySSA] Set CFGOnly correctly for MemorySSAWrapperPass

Geoff Berry via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 14 14:26:24 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL272712: [MemorySSA] Set CFGOnly correctly for MemorySSAWrapperPass (authored by gberry).

Changed prior to commit:
  http://reviews.llvm.org/D21344?vs=60749&id=60755#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D21344

Files:
  llvm/trunk/lib/Transforms/Utils/MemorySSA.cpp

Index: llvm/trunk/lib/Transforms/Utils/MemorySSA.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Utils/MemorySSA.cpp
+++ llvm/trunk/lib/Transforms/Utils/MemorySSA.cpp
@@ -47,11 +47,12 @@
 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 {
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D21344.60755.patch
Type: text/x-patch
Size: 898 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160614/41b2c9c8/attachment.bin>


More information about the llvm-commits mailing list