diff options
| -rw-r--r-- | llvm/lib/Transforms/Coroutines/CoroSplit.cpp | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Coroutines/CoroSplit.cpp b/llvm/lib/Transforms/Coroutines/CoroSplit.cpp index 01357f0c8bd..f7d40a3be42 100644 --- a/llvm/lib/Transforms/Coroutines/CoroSplit.cpp +++ b/llvm/lib/Transforms/Coroutines/CoroSplit.cpp @@ -865,9 +865,14 @@ static void updateCoroFrame(coro::Shape &Shape, Function *ResumeFn,  static void postSplitCleanup(Function &F) {    removeUnreachableBlocks(F); + +  // 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. +  verifyFunction(F); +    legacy::FunctionPassManager FPM(F.getParent()); -  FPM.add(createVerifierPass());    FPM.add(createSCCPPass());    FPM.add(createCFGSimplificationPass());    FPM.add(createEarlyCSEPass());  | 

