[llvm] [BPF] Fix BitCast Assertion with NonZero AddrSpace (PR #130722)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 08:43:34 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()));
----------------
yonghong-song wrote:
Okay, let me give a try.
https://github.com/llvm/llvm-project/pull/130722
More information about the llvm-commits
mailing list