[llvm] [AssumeBundles] Dereferenceable used in bundle only applies at assume. (PR #126117)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 11 09:58:46 PST 2025


================
@@ -626,7 +626,7 @@ static bool isKnownNonZeroFromAssume(const Value *V, const SimplifyQuery &Q) {
               *I, I->bundle_op_info_begin()[Elem.Index])) {
         if (RK.WasOn == V &&
             (RK.AttrKind == Attribute::NonNull ||
-             (RK.AttrKind == Attribute::Dereferenceable &&
+             (RK.AttrKind == Attribute::Dereferenceable && !V->canBeFreed() &&
----------------
fhahn wrote:

Yep, removed again, thanks

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


More information about the llvm-commits mailing list