[llvm] [AMDGPU] Infer amdgpu-no-flat-scratch-init attribute in AMDGPUAttributor (PR #94647)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 22 12:43:46 PDT 2024
================
@@ -433,6 +433,13 @@ struct AAAMDAttributesFunction : public AAAMDAttributes {
indicatePessimisticFixpoint();
return;
}
+
+ for (Instruction &I : instructions(F)) {
+ if (isa<AllocaInst>(I) || isa<AddrSpaceCastInst>(I)) {
----------------
arsenm wrote:
Approximately yes, but you should use dyn_cast and never static_cast
https://github.com/llvm/llvm-project/pull/94647
More information about the llvm-commits
mailing list