Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:IsNull

232     assert(ReturnValue.isNull() && "Destructor shouldn't have return value");
1414 llvm::Value *isNull =
1415 Builder.CreateIsNull(allocation.getPointer(), "new.isnull");
1416 Builder.CreateCondBr(isNull, contBB, notNullBB);
1712 llvm::Value *IsNull = Builder.CreateIsNull(Ptr.getPointer(), "isnull");
1714 Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
1804 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr.getPointer());
1805 CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock);
1901 llvm::Value *IsNull = Builder.CreateIsNull(ThisAddr.getPointer());
1902 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);