[llvm] 441fff7 - XCore: Fix broken check lines in test
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 3 16:41:05 PDT 2025
Author: Matt Arsenault
Date: 2025-08-04T08:40:48+09:00
New Revision: 441fff7ebe6bad3502da368236885f76cf9e5f30
URL: https://github.com/llvm/llvm-project/commit/441fff7ebe6bad3502da368236885f76cf9e5f30
DIFF: https://github.com/llvm/llvm-project/commit/441fff7ebe6bad3502da368236885f76cf9e5f30.diff
LOG: XCore: Fix broken check lines in test
Added:
Modified:
llvm/test/CodeGen/XCore/llvm.sincos.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/XCore/llvm.sincos.ll b/llvm/test/CodeGen/XCore/llvm.sincos.ll
index 690c03897189a..e01f208444ad7 100644
--- a/llvm/test/CodeGen/XCore/llvm.sincos.ll
+++ b/llvm/test/CodeGen/XCore/llvm.sincos.ll
@@ -26,9 +26,8 @@ define { <2 x half>, <2 x half> } @test_sincos_v2f16(<2 x half> %a) nounwind {
}
; CHECK-LABEL: test_sincos_f32:
-; OTHER: bl sinf
-; OTHER: bl cosf
-; GNU: bl sincosf
+; CHECK: bl sinf
+; CHECK: bl cosf
define { float, float } @test_sincos_f32(float %a) nounwind {
%result = call { float, float } @llvm.sincos.f32(float %a)
ret { float, float } %result
More information about the llvm-commits
mailing list