[llvm] [WIP][AMDGPU][Attributor] Make `AAAMDFlatWorkGroupSize` honor existing attribute (PR #114357)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 31 07:33:43 PDT 2024
================
@@ -728,12 +735,43 @@ struct AAAMDSizeRangeAttribute
};
bool AllCallSitesKnown = true;
- if (!A.checkForAllCallSites(CheckCallSite, *this, true, AllCallSitesKnown))
+ if (!A.checkForAllCallSites(CheckCallSite, *this,
+ /*RequireAllCallSites=*/true,
+ AllCallSitesKnown))
return indicatePessimisticFixpoint();
----------------
arsenm wrote:
Precommit NFC change?
https://github.com/llvm/llvm-project/pull/114357
More information about the llvm-commits
mailing list