[SystemZ] NFC: Remove unused intrinsic template arg 'name'
authorCullen Rhodes <cullen.rhodes@arm.com>
Fri, 24 Sep 2021 11:37:33 +0000 (11:37 +0000)
committerCullen Rhodes <cullen.rhodes@arm.com>
Fri, 24 Sep 2021 13:06:38 +0000 (13:06 +0000)
Identified in D109359.

Reviewed By: uweigand

Differential Revision: https://reviews.llvm.org/D109598

llvm/include/llvm/IR/IntrinsicsSystemZ.td

index 81435e9..a149b57 100644 (file)
@@ -144,7 +144,7 @@ multiclass SystemZBinaryCCBHF {
   def fs : SystemZBinaryCC<llvm_v4i32_ty>;
 }
 
-multiclass SystemZCompareBHFG<string name> {
+multiclass SystemZCompareBHFG {
   def bs : SystemZBinaryCC<llvm_v16i8_ty>;
   def hs : SystemZBinaryCC<llvm_v8i16_ty>;
   def fs : SystemZBinaryCC<llvm_v4i32_ty>;
@@ -341,9 +341,9 @@ let TargetPrefix = "s390" in {
 
   def int_s390_vtm : SystemZBinaryConv<"vtm", llvm_i32_ty, llvm_v16i8_ty>;
 
-  defm int_s390_vceq : SystemZCompareBHFG<"vceq">;
-  defm int_s390_vch  : SystemZCompareBHFG<"vch">;
-  defm int_s390_vchl : SystemZCompareBHFG<"vchl">;
+  defm int_s390_vceq : SystemZCompareBHFG;
+  defm int_s390_vch  : SystemZCompareBHFG;
+  defm int_s390_vchl : SystemZCompareBHFG;
 
   defm int_s390_vfae  : SystemZTernaryIntBHF<"vfae">;
   defm int_s390_vfae  : SystemZTernaryIntCCBHF;