[llvm] 2a2d6d6 - [RISCV] Remove unused check prefixes from half arith strict test. NFC
Jim Lin via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 16 22:02:40 PDT 2025
Author: Jim Lin
Date: 2025-03-17T12:51:39+08:00
New Revision: 2a2d6d61b178f0d8d542333155510896c7bc75b5
URL: https://github.com/llvm/llvm-project/commit/2a2d6d61b178f0d8d542333155510896c7bc75b5
DIFF: https://github.com/llvm/llvm-project/commit/2a2d6d61b178f0d8d542333155510896c7bc75b5.diff
LOG: [RISCV] Remove unused check prefixes from half arith strict test. NFC
Added:
Modified:
llvm/test/CodeGen/RISCV/half-arith-strict.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/RISCV/half-arith-strict.ll b/llvm/test/CodeGen/RISCV/half-arith-strict.ll
index 636739cf38984..74e7f8bdc565f 100644
--- a/llvm/test/CodeGen/RISCV/half-arith-strict.ll
+++ b/llvm/test/CodeGen/RISCV/half-arith-strict.ll
@@ -11,16 +11,16 @@
; RUN: | FileCheck -check-prefix=CHECK-ZHINX %s
; RUN: llc -mtriple=riscv32 -mattr=+zfhmin -verify-machineinstrs \
; RUN: -disable-strictnode-mutation -target-abi ilp32f < %s \
-; RUN: | FileCheck -check-prefixes=CHECK-ZFHMIN,CHECK-ZFHMIN-RV32 %s
+; RUN: | FileCheck -check-prefixes=CHECK-ZFHMIN %s
; RUN: llc -mtriple=riscv64 -mattr=+zfhmin -verify-machineinstrs \
; RUN: -disable-strictnode-mutation -target-abi lp64f < %s \
-; RUN: | FileCheck -check-prefixes=CHECK-ZFHMIN,CHECK-ZFHMIN-RV64 %s
+; RUN: | FileCheck -check-prefixes=CHECK-ZFHMIN %s
; RUN: llc -mtriple=riscv32 -mattr=+zhinxmin -verify-machineinstrs \
; RUN: -disable-strictnode-mutation -target-abi ilp32 < %s \
-; RUN: | FileCheck -check-prefixes=CHECK-ZHINXMIN,CHECK-ZHINXMIN-RV32 %s
+; RUN: | FileCheck -check-prefixes=CHECK-ZHINXMIN %s
; RUN: llc -mtriple=riscv64 -mattr=+zhinxmin -verify-machineinstrs \
; RUN: -disable-strictnode-mutation -target-abi lp64 < %s \
-; RUN: | FileCheck -check-prefixes=CHECK-ZHINXMIN,CHECK-ZHINXMIN-RV64 %s
+; RUN: | FileCheck -check-prefixes=CHECK-ZHINXMIN %s
; FIXME: We can't test without Zfh because soft promote legalization isn't
; implemented in SelectionDAG for STRICT nodes.
@@ -502,8 +502,3 @@ define half @fnmsub_h_2(half %a, half %b, half %c) nounwind strictfp {
%1 = call half @llvm.experimental.constrained.fma.f16(half %a, half %negb, half %c, metadata !"round.dynamic", metadata !"fpexcept.strict") strictfp
ret half %1
}
-;; NOTE: These prefixes are unused and the list is autogenerated. Do not add tests below this line:
-; CHECK-ZFHMIN-RV32: {{.*}}
-; CHECK-ZFHMIN-RV64: {{.*}}
-; CHECK-ZHINXMIN-RV32: {{.*}}
-; CHECK-ZHINXMIN-RV64: {{.*}}
More information about the llvm-commits
mailing list