[llvm] [Attributor] Don't replace `AddrSpaceCast` with `ConstantPointerNull` (PR #126779)
Shilei Tian via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 11 11:10:43 PST 2025
================
@@ -10970,6 +10970,15 @@ struct AAPotentialValuesImpl : AAPotentialValues {
Value *NewV = getSingleValue(A, *this, getIRPosition(), Values);
if (!NewV || NewV == &OldV)
continue;
+ // FIXME: ConstantPointerNull represents a pointer with value 0, but it
+ // doesn’t necessarily mean a nullptr. `ptr addrspace(x) null` is not the
+ // same as `addrspacecast (ptr null to ptr addrspace(x))` if the nullptr
+ // in AS x is not zero. Therefore, we can't simply replace it.
+ if (isa<ConstantPointerNull>(NewV) && isa<ConstantExpr>(OldV)) {
+ auto &CE = cast<ConstantExpr>(OldV);
----------------
shiltian wrote:
yeah, but here we want to check both and only use the name for the second one.
https://github.com/llvm/llvm-project/pull/126779
More information about the llvm-commits
mailing list