Skip to content

Commit a70ad96

Browse files
authored
[AMDGPU] Fix condition in VOP3_Real_Base. NFCI. (#91373)
1 parent 8c4d798 commit a70ad96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AMDGPU/VOPInstructions.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1410,7 +1410,7 @@ multiclass VOP3_Real_Base<GFXGen Gen, bits<10> op, string opName = NAME,
14101410
def _e64#Gen.Suffix :
14111411
VOP3_Real_Gen<ps, Gen>,
14121412
VOP3FP8OpSel_dst_bytesel_gfx11_gfx12<op, ps.Pfl>;
1413-
} if ps.Pfl.HasOpSel then {
1413+
} else if ps.Pfl.HasOpSel then {
14141414
def _e64#Gen.Suffix :
14151415
VOP3_Real_Gen<ps, Gen>,
14161416
VOP3OpSel_gfx11_gfx12<op, ps.Pfl>;

0 commit comments

Comments
 (0)