[PATCH] D109198: [Coroutines] Only run verifyFunction in debug mode
Xun Li via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 2 17:35:18 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2cf30c4769a5: [Coroutines] Only run verifyFunction in debug mode (authored by lxfind).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D109198/new/
https://reviews.llvm.org/D109198
Files:
llvm/lib/Transforms/Coroutines/CoroSplit.cpp
Index: llvm/lib/Transforms/Coroutines/CoroSplit.cpp
===================================================================
--- llvm/lib/Transforms/Coroutines/CoroSplit.cpp
+++ llvm/lib/Transforms/Coroutines/CoroSplit.cpp
@@ -1142,11 +1142,13 @@
static void postSplitCleanup(Function &F) {
removeUnreachableBlocks(F);
+#ifndef NDEBUG
// For now, we do a mandatory verification step because we don't
// entirely trust this pass. Note that we don't want to add a verifier
// pass to FPM below because it will also verify all the global data.
if (verifyFunction(F, &errs()))
report_fatal_error("Broken function");
+#endif
}
// Assuming we arrived at the block NewBlock from Prev instruction, store
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D109198.370458.patch
Type: text/x-patch
Size: 719 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210903/98194ed3/attachment.bin>
More information about the llvm-commits
mailing list