Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Continue

601       continue;
684 // the continue target.
694 // Store the blocks to use for break and continue.
715 // to correctly handle break/continue though.
776 // Store the blocks to use for break and continue.
803 // to correctly handle break/continue though.
843 // If there's an increment, the continue scope will be overwritten
845 JumpDest Continue = getJumpDestInCurrentScope("for.cond");
846 llvm::BasicBlock *CondBlock = Continue.getBlock();
852 // condition as the continue block. Otherwise we'll need to create
854 // condition), and that we will become our continue block.
856 Continue = getJumpDestInCurrentScope("for.inc");
858 // Store the blocks to use for break and continue.
859 BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
911 EmitBlock(Continue.getBlock());
944 // If there's an increment, the continue scope will be overwritten
977 // Create a block for the increment. In case of a 'continue', we jump there.
978 JumpDest Continue = getJumpDestInCurrentScope("for.inc");
980 // Store the blocks to use for break and continue.
981 BreakContinueStack.push_back(BreakContinue(LoopExit, Continue));
992 EmitBlock(Continue.getBlock());
1121 assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
1476 continue;
1552 // switches continue to function properly
1795 if (StrVal[i] != '\n') continue;