[llvm] [LLVM][Transforms][Attributor] - Add batch reachability optimization to forallInterferingAccesses (PR #190078)
Pranav Bhandarkar via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 30 09:16:12 PDT 2026
================
@@ -1277,8 +1296,9 @@ struct AAPointerInfoImpl
auto CanSkipAccess = [&](const Access &Acc, bool Exact) {
if (SkipCB && SkipCB(Acc))
return true;
- if (!CanIgnoreThreading(Acc))
+ if (!CanIgnoreThreading(Acc)) {
return false;
+ }
----------------
bhandarkar-pranav wrote:
Will fix.
https://github.com/llvm/llvm-project/pull/190078
More information about the llvm-commits
mailing list