[llvm] [BPF] Fix BitCast Assertion with NonZero AddrSpace (PR #130722)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 15:46:28 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()));
----------------
nikic wrote:
Can't you drop this bitcast and the one below entirely? They are not needed anymore with opaque pointers.
https://github.com/llvm/llvm-project/pull/130722
More information about the llvm-commits
mailing list