From ce21ab23b7555b44b6a6126a0b6bdce12af8736f Mon Sep 17 00:00:00 2001 From: Cullen Rhodes Date: Fri, 24 Sep 2021 11:37:33 +0000 Subject: [PATCH] [SystemZ] NFC: Remove unused intrinsic template arg 'name' Identified in D109359. Reviewed By: uweigand Differential Revision: https://reviews.llvm.org/D109598 --- llvm/include/llvm/IR/IntrinsicsSystemZ.td | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/llvm/include/llvm/IR/IntrinsicsSystemZ.td b/llvm/include/llvm/IR/IntrinsicsSystemZ.td index 81435e9..a149b57 100644 --- a/llvm/include/llvm/IR/IntrinsicsSystemZ.td +++ b/llvm/include/llvm/IR/IntrinsicsSystemZ.td @@ -144,7 +144,7 @@ multiclass SystemZBinaryCCBHF { def fs : SystemZBinaryCC; } -multiclass SystemZCompareBHFG { +multiclass SystemZCompareBHFG { def bs : SystemZBinaryCC; def hs : SystemZBinaryCC; def fs : SystemZBinaryCC; @@ -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; -- 2.7.4