Skip to content

Commit 84c60bb

Browse files
authored
[AMDGPU] Add IsSingle to V_DIV_FMAS* for consistency. (llvm#95983)
A _e64 suffix should not be printed since these instructions only have one legal encoding length. The absence of the IsSingle flag is hidden by how the string is printed, but fix it for consistency. NFC
1 parent 4b0c078 commit 84c60bb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

llvm/lib/Target/AMDGPU/VOP3Instructions.td

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ def VOP_F32_F32_F32_F32_VCC : VOPProfile<[f32, f32, f32, f32]> {
1313
let Outs64 = (outs DstRC.RegClass:$vdst);
1414
let HasExtVOP3DPP = 0;
1515
let HasExtDPP = 0;
16+
let IsSingle = 1;
1617
}
1718
def VOP_F64_F64_F64_F64_VCC : VOPProfile<[f64, f64, f64, f64]> {
1819
let Outs64 = (outs DstRC.RegClass:$vdst);
20+
let IsSingle = 1;
1921
}
2022
}
2123

0 commit comments

Comments
 (0)