[llvm] 58f107f - [AMDGPU] Remove unused template argument after #113634. NFC.
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 15 04:03:29 PST 2024
Author: Jay Foad
Date: 2024-11-15T11:54:59Z
New Revision: 58f107f38838275f0727521558cc06646d8c205d
URL: https://github.com/llvm/llvm-project/commit/58f107f38838275f0727521558cc06646d8c205d
DIFF: https://github.com/llvm/llvm-project/commit/58f107f38838275f0727521558cc06646d8c205d.diff
LOG: [AMDGPU] Remove unused template argument after #113634. NFC.
Added:
Modified:
llvm/lib/Target/AMDGPU/VINTERPInstructions.td
Removed:
################################################################################
diff --git a/llvm/lib/Target/AMDGPU/VINTERPInstructions.td b/llvm/lib/Target/AMDGPU/VINTERPInstructions.td
index 860a3d775d600d..fa06d96085820e 100644
--- a/llvm/lib/Target/AMDGPU/VINTERPInstructions.td
+++ b/llvm/lib/Target/AMDGPU/VINTERPInstructions.td
@@ -223,12 +223,12 @@ multiclass VINTERP_Real_gfx12 <bits<7> op, string asmName> {
}
}
-multiclass VINTERP_Real_gfx11_gfx12 <bits<7> op, string asmName = !cast<VOP3_Pseudo>(NAME).Mnemonic, string opName = NAME> :
+multiclass VINTERP_Real_gfx11_gfx12 <bits<7> op, string asmName = !cast<VOP3_Pseudo>(NAME).Mnemonic> :
VINTERP_Real_gfx11<op, asmName>, VINTERP_Real_gfx12<op, asmName>;
-multiclass VINTERP_Real_t16_and_fake16_gfx11_gfx12 <bits<7> op, string asmName = !cast<VOP3_Pseudo>(NAME).Mnemonic, string opName = NAME> {
- defm _t16: VINTERP_Real_gfx11_gfx12<op, asmName, opName#"_t16">;
- defm _fake16: VINTERP_Real_gfx11_gfx12<op, asmName, opName#"_fake16">;
+multiclass VINTERP_Real_t16_and_fake16_gfx11_gfx12 <bits<7> op, string asmName = !cast<VOP3_Pseudo>(NAME).Mnemonic> {
+ defm _t16: VINTERP_Real_gfx11_gfx12<op, asmName>;
+ defm _fake16: VINTERP_Real_gfx11_gfx12<op, asmName>;
}
More information about the llvm-commits
mailing list