Home | History | Annotate | Download | only in IPO

Lines Matching refs:NullPtrBlock

1365   BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1372 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
1374 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1377 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
1378 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
1385 Cmp, NullPtrBlock);
1393 NullPtrBlock = NextBlock;
1396 BranchInst::Create(ContBB, NullPtrBlock);