[llvm] [InstCombine] Fold `getelementptr inbounds null, idx -> null` (PR #130742)
Yingwei Zheng via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 06:41:12 PDT 2025
================
@@ -2910,6 +2910,13 @@ Instruction *InstCombinerImpl::visitGetElementPtrInst(GetElementPtrInst &GEP) {
SQ.getWithInstruction(&GEP)))
return replaceInstUsesWith(GEP, V);
+ // getelementptr inbounds null, idx -> null
+ if (auto *BaseC = dyn_cast<Constant>(PtrOp))
+ if (GEP.isInBounds() && BaseC->isNullValue() &&
+ !NullPointerIsDefined(GEP.getFunction(),
+ GEPType->getPointerAddressSpace()))
+ return replaceInstUsesWith(GEP, Constant::getNullValue(GEPType));
----------------
dtcxzyw wrote:
Is it allowed to get the parent function from SQ.CxtI?
https://github.com/llvm/llvm-project/pull/130742
More information about the llvm-commits
mailing list