[PATCH] D88059: [Coroutine] Split PHI Nodes in `cleanuppad` blocks in a way that obeys EH pad rules
Xun Li via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 10 14:22:44 PST 2020
lxfind added inline comments.
================
Comment at: llvm/lib/Transforms/Coroutines/CoroFrame.cpp:1235
+ for (BasicBlock *Pred : Preds) {
+ if (CatchSwitchInst *CS =
+ dyn_cast<CatchSwitchInst>(Pred->getTerminator())) {
----------------
CS gets unused in release build, leading to a warning. You will need (void) it.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88059/new/
https://reviews.llvm.org/D88059
More information about the llvm-commits
mailing list