[llvm] [TargetLowering] Add a new function `getNullPtrValue` (PR #126665)

Shilei Tian via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 11 04:53:24 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:

Yeah I think I made a mistake here.

https://github.com/llvm/llvm-project/pull/126665


More information about the llvm-commits mailing list