Home | History | Annotate | Download | only in IPO

Lines Matching refs:NullPtrBlock

1348   BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1355 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
1357 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1360 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
1361 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
1368 Cmp, NullPtrBlock);
1376 NullPtrBlock = NextBlock;
1379 BranchInst::Create(ContBB, NullPtrBlock);