[llvm] [BPF] Fix BitCast Assertion with NonZero AddrSpace (PR #130722)

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 10:23:16 PDT 2025


================
@@ -1113,8 +1113,9 @@ bool BPFAbstractMemberAccess::transformGEPChain(CallInst *Call,
                               Call->getIterator());
 
   // Generate a BitCast
-  auto *BCInst =
-      new BitCastInst(Base, PointerType::getUnqual(BB->getContext()));
+  auto *BCInst = new BitCastInst(
+      Base, PointerType::get(BB->getContext(),
+                             Base->getType()->getPointerAddressSpace()));
----------------
tstellar wrote:

Did this change make it into the backport: https://github.com/llvm/llvm-project/pull/130995

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


More information about the llvm-commits mailing list