Skip to content

Commit 6c04137

Browse files
arsenmAlexisPerry
authored andcommitted
AMDGPU: Fix overriding SubtargetPredicate in MUBUF_Real_gfx90a (llvm#96351)
1 parent 2d2ce8c commit 6c04137

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/AMDGPU/BUFInstructions.td

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3082,9 +3082,9 @@ multiclass MUBUF_Real_vi_gfx90a<bits<7> op, bit isTFE = 0> : MUBUF_Real_vi<op> {
30823082
}
30833083

30843084
if ps.FPAtomic then {
3085-
let SubtargetPredicate = isGFX90AOnly,
3086-
AssemblerPredicate = isGFX90AOnly in
3087-
defm NAME : MUBUF_Real_gfx90a<op, 0>;
3085+
let AssemblerPredicate = isGFX90AOnly in
3086+
defm NAME : MUBUF_Real_gfx90a<op, 0>;
3087+
30883088
def _gfx940 : MUBUF_Real_gfx940<op, ps>;
30893089
}
30903090
}

0 commit comments

Comments
 (0)