Skip to content

Commit 58f107f

Browse files
committed
[AMDGPU] Remove unused template argument after #113634. NFC.
1 parent 3369424 commit 58f107f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/Target/AMDGPU/VINTERPInstructions.td

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,12 +223,12 @@ multiclass VINTERP_Real_gfx12 <bits<7> op, string asmName> {
223223
}
224224
}
225225

226-
multiclass VINTERP_Real_gfx11_gfx12 <bits<7> op, string asmName = !cast<VOP3_Pseudo>(NAME).Mnemonic, string opName = NAME> :
226+
multiclass VINTERP_Real_gfx11_gfx12 <bits<7> op, string asmName = !cast<VOP3_Pseudo>(NAME).Mnemonic> :
227227
VINTERP_Real_gfx11<op, asmName>, VINTERP_Real_gfx12<op, asmName>;
228228

229-
multiclass VINTERP_Real_t16_and_fake16_gfx11_gfx12 <bits<7> op, string asmName = !cast<VOP3_Pseudo>(NAME).Mnemonic, string opName = NAME> {
230-
defm _t16: VINTERP_Real_gfx11_gfx12<op, asmName, opName#"_t16">;
231-
defm _fake16: VINTERP_Real_gfx11_gfx12<op, asmName, opName#"_fake16">;
229+
multiclass VINTERP_Real_t16_and_fake16_gfx11_gfx12 <bits<7> op, string asmName = !cast<VOP3_Pseudo>(NAME).Mnemonic> {
230+
defm _t16: VINTERP_Real_gfx11_gfx12<op, asmName>;
231+
defm _fake16: VINTERP_Real_gfx11_gfx12<op, asmName>;
232232
}
233233

234234

0 commit comments

Comments
 (0)