Home | History | Annotate | Download | only in IPO

Lines Matching refs:NullPtrBlock

1304   BasicBlock *NullPtrBlock = BasicBlock::Create(OrigBB->getContext(),
1311 BranchInst::Create(NullPtrBlock, ContBB, RunningOr, OrigBB);
1313 // Within the NullPtrBlock, we need to emit a comparison and branch for each
1316 Value *GVVal = new LoadInst(FieldGlobals[i], "tmp", NullPtrBlock);
1317 Value *Cmp = new ICmpInst(*NullPtrBlock, ICmpInst::ICMP_NE, GVVal,
1324 Cmp, NullPtrBlock);
1332 NullPtrBlock = NextBlock;
1335 BranchInst::Create(ContBB, NullPtrBlock);