[PATCH] D47056: Removed analysis flag from SafepointIRVerifier pass
Yevgeny Rouban via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 18 01:52:41 PDT 2018
yrouban created this revision.
yrouban added reviewers: anna, DaniilSuchkov, reames, skatkov, fedor.sergeev.
Removed //analysis// flag from the SafepointIRVerifier pass.
https://reviews.llvm.org/D47056
Files:
lib/IR/SafepointIRVerifier.cpp
Index: lib/IR/SafepointIRVerifier.cpp
===================================================================
--- lib/IR/SafepointIRVerifier.cpp
+++ lib/IR/SafepointIRVerifier.cpp
@@ -95,9 +95,9 @@
}
INITIALIZE_PASS_BEGIN(SafepointIRVerifier, "verify-safepoint-ir",
- "Safepoint IR Verifier", false, true)
+ "Safepoint IR Verifier", false, false)
INITIALIZE_PASS_END(SafepointIRVerifier, "verify-safepoint-ir",
- "Safepoint IR Verifier", false, true)
+ "Safepoint IR Verifier", false, false)
static bool isGCPointerType(Type *T) {
if (auto *PT = dyn_cast<PointerType>(T))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47056.147446.patch
Type: text/x-patch
Size: 659 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180518/4f9653dd/attachment.bin>
More information about the llvm-commits
mailing list