Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:ContBlock

2361   llvm::BasicBlock *ContBlock = CGF.createBasicBlock("land.end");
2367 CGF.EmitBranchOnBoolExpr(E->getLHS(), RHSBlock, ContBlock);
2369 // Any edges into the ContBlock are now from an (indeterminate number of)
2373 "", ContBlock);
2374 for (llvm::pred_iterator PI = pred_begin(ContBlock), PE = pred_end(ContBlock);
2386 // Emit an unconditional branch from this block to ContBlock. Insert an entry
2391 CGF.EmitBlock(ContBlock);
2416 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("lor.end");
2422 CGF.EmitBranchOnBoolExpr(E->getLHS(), ContBlock, RHSBlock);
2424 // Any edges into the ContBlock are now from an (indeterminate number of)
2428 "", ContBlock);
2429 for (llvm::pred_iterator PI = pred_begin(ContBlock), PE = pred_end(ContBlock);
2444 // Emit an unconditional branch from this block to ContBlock. Insert an entry
2446 CGF.EmitBlock(ContBlock);
2579 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("cond.end");
2590 Builder.CreateBr(ContBlock);
2598 ContBlock);