[llvm] ce21ab2 - [SystemZ] NFC: Remove unused intrinsic template arg 'name'
Cullen Rhodes via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 24 06:07:02 PDT 2021
Author: Cullen Rhodes
Date: 2021-09-24T13:06:38Z
New Revision: ce21ab23b7555b44b6a6126a0b6bdce12af8736f
URL: https://github.com/llvm/llvm-project/commit/ce21ab23b7555b44b6a6126a0b6bdce12af8736f
DIFF: https://github.com/llvm/llvm-project/commit/ce21ab23b7555b44b6a6126a0b6bdce12af8736f.diff
LOG: [SystemZ] NFC: Remove unused intrinsic template arg 'name'
Identified in D109359.
Reviewed By: uweigand
Differential Revision: https://reviews.llvm.org/D109598
Added:
Modified:
llvm/include/llvm/IR/IntrinsicsSystemZ.td
Removed:
################################################################################
diff --git a/llvm/include/llvm/IR/IntrinsicsSystemZ.td b/llvm/include/llvm/IR/IntrinsicsSystemZ.td
index 81435e98bea0..a149b571072c 100644
--- a/llvm/include/llvm/IR/IntrinsicsSystemZ.td
+++ b/llvm/include/llvm/IR/IntrinsicsSystemZ.td
@@ -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;
More information about the llvm-commits
mailing list