Lines Matching defs:BB1
265 // We should end up with an unconditional branch from BB to BB1, and the
266 // return ends up in BB1.
269 auto *BB1 = UncondBr->getSuccessor(0);
270 ASSERT_THAT(RI->getParent(), Eq(BB1));
272 // Now add an instruction to BB1 and split on that.
277 // We should end up with a loop back on BB1 and the instruction we split on
279 auto *CondBr = cast<BranchInst>(BB1->getTerminator());
282 ASSERT_THAT(CondBr->getSuccessor(0), Eq(BB1));
331 auto *BB1 = BasicBlock::Create(Ctx, "BB1", F);
334 BranchInst::Create(BB2, BB3, ConstantInt::getFalse(Ctx), BB1);
339 PHI1->addIncoming(ConstantInt::get(Int8Ty, 0), BB1);
342 PHI2->addIncoming(ConstantInt::get(Int8Ty, 1), BB1);