From 84c60bb7d84cfcfa9056ef0b675c0deb4f4ab5e1 Mon Sep 17 00:00:00 2001 From: Joe Nash Date: Wed, 19 Jun 2024 09:58:49 -0400 Subject: [AMDGPU] Add IsSingle to V_DIV_FMAS* for consistency. (#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 --- llvm/lib/Target/AMDGPU/VOP3Instructions.td | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/lib/Target/AMDGPU/VOP3Instructions.td b/llvm/lib/Target/AMDGPU/VOP3Instructions.td index 3d93764..0f9e79b 100644 --- a/llvm/lib/Target/AMDGPU/VOP3Instructions.td +++ b/llvm/lib/Target/AMDGPU/VOP3Instructions.td @@ -13,9 +13,11 @@ def VOP_F32_F32_F32_F32_VCC : VOPProfile<[f32, f32, f32, f32]> { let Outs64 = (outs DstRC.RegClass:$vdst); let HasExtVOP3DPP = 0; let HasExtDPP = 0; + let IsSingle = 1; } def VOP_F64_F64_F64_F64_VCC : VOPProfile<[f64, f64, f64, f64]> { let Outs64 = (outs DstRC.RegClass:$vdst); + let IsSingle = 1; } } -- cgit v1.1