[llvm] 8b65973 - [SystemZ] Make lit test more specific (#115050)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 5 12:29:36 PST 2024
Author: Kai Nacke
Date: 2024-11-05T15:29:32-05:00
New Revision: 8b659736f7393314a797b6cf2fa346316a624ecb
URL: https://github.com/llvm/llvm-project/commit/8b659736f7393314a797b6cf2fa346316a624ecb
DIFF: https://github.com/llvm/llvm-project/commit/8b659736f7393314a797b6cf2fa346316a624ecb.diff
LOG: [SystemZ] Make lit test more specific (#115050)
The lit test fmuladd-soft-float.ll only specifies s390x as platform,
but the test is Linux specific, causing problems when run on z/OS.
This change updates the triple to fix this.
Added:
Modified:
llvm/test/CodeGen/SystemZ/fmuladd-soft-float.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/SystemZ/fmuladd-soft-float.ll b/llvm/test/CodeGen/SystemZ/fmuladd-soft-float.ll
index b01c348b631b88..d0bfe74719f89b 100644
--- a/llvm/test/CodeGen/SystemZ/fmuladd-soft-float.ll
+++ b/llvm/test/CodeGen/SystemZ/fmuladd-soft-float.ll
@@ -1,5 +1,5 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
-; RUN: llc -mtriple=s390x < %s | FileCheck %s -check-prefix=SOFT-FLOAT
+; RUN: llc -mtriple=s390x-linux < %s | FileCheck %s -check-prefix=SOFT-FLOAT
define float @fmuladd_intrinsic_f32(float %a, float %b, float %c) #0 {
; SOFT-FLOAT-LABEL: fmuladd_intrinsic_f32:
More information about the llvm-commits
mailing list