forked from OSchip/llvm-project
[MemorySSA] Set CFGOnly correctly for MemorySSAWrapperPass
Subscribers: mcrosier, llvm-commits Differential Revision: http://reviews.llvm.org/D21344 llvm-svn: 272712
This commit is contained in:
parent
a8bf23d656
commit
efb0dd176a
|
@ -47,11 +47,12 @@ STATISTIC(NumClobberCacheLookups, "Number of Memory SSA version cache lookups");
|
||||||
STATISTIC(NumClobberCacheHits, "Number of Memory SSA version cache hits");
|
STATISTIC(NumClobberCacheHits, "Number of Memory SSA version cache hits");
|
||||||
STATISTIC(NumClobberCacheInserts, "Number of MemorySSA version cache inserts");
|
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)
|
true)
|
||||||
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|
||||||
INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
|
INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
|
||||||
INITIALIZE_PASS_END(MemorySSAWrapperPass, "memoryssa", "Memory SSA", true, true)
|
INITIALIZE_PASS_END(MemorySSAWrapperPass, "memoryssa", "Memory SSA", false,
|
||||||
|
true)
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue