Lines Matching defs:yield
92 // | | <operands of yield = %yields>| |
120 // of the "else" region. In these blocks, "scf.yield" is unconditional branches
494 // hierarchy and bubble up the results by modifying the "yield" terminator.
514 // A loop is constructed with an empty "yield" terminator if there are
607 auto yield = dyn_cast<scf::YieldOp>(&afterBlock.front());
608 if (!yield || yield.getResults() != afterBlock.getArguments())
659 // Convert the yield terminator to a branch to the continue block.
660 auto yield = cast<scf::YieldOp>(block->getTerminator());
661 rewriter.setInsertionPoint(yield);
662 rewriter.replaceOpWithNewOp<cf::BranchOp>(yield, continueBlock,
663 yield.getOperands());