[llvm] [TargetLowering] Add a new function `getNullPtrValue` (PR #126665)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 10 21:45:37 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);
----------------
arsenm wrote:
ConstantPointerNull currently means a bitpattern 0. It does not mean a known invalid or sentinel pointer.
https://github.com/llvm/llvm-project/pull/126665
More information about the llvm-commits
mailing list