[llvm] [TargetLowering] Add a new function `getNullPtrValue` (PR #126665)
Shilei Tian via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 10 21:57:02 PST 2025
================
@@ -1807,8 +1807,7 @@ SDValue SelectionDAGBuilder::getValueImpl(const Value *V) {
if (isa<ConstantPointerNull>(C)) {
unsigned AS = V->getType()->getPointerAddressSpace();
- return DAG.getConstant(0, getCurSDLoc(),
- TLI.getPointerTy(DAG.getDataLayout(), AS));
+ return TLI.getNullPtrValue(AS, getCurSDLoc(), DAG);
----------------
shiltian wrote:
In addition, the [document](https://llvm.org/doxygen/classllvm_1_1ConstantPointerNull.html#details) suggests that it is "a constant pointer value that points to null". My reading is, it is a `nullptr`. I don't see where to solely treat it as 0.
https://github.com/llvm/llvm-project/pull/126665
More information about the llvm-commits
mailing list