https://github.com/andykaylor created https://github.com/llvm/llvm-project/pull/219069
This fixes the neon intrinsics test, which has been failing since a recent change to introduce more conversion handling. The test had an inadvertantly repeated CIR check. >From cecd36f9e09b55841be9ab9952fab00f8da4029d Mon Sep 17 00:00:00 2001 From: Andy Kaylor <[email protected]> Date: Wed, 26 Aug 2026 16:00:41 -0700 Subject: [PATCH] [CIR][AARCH64] Fix neon conversion test This fixes the neon intrinsics test, which has been failing since a recent change to introduce more conversion handling. The test had an inadvertantly repeated CIR check. --- clang/test/CodeGen/AArch64/neon/intrinsics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGen/AArch64/neon/intrinsics.c b/clang/test/CodeGen/AArch64/neon/intrinsics.c index 4f8443abd86a6..2eeb33d5d99cb 100644 --- a/clang/test/CodeGen/AArch64/neon/intrinsics.c +++ b/clang/test/CodeGen/AArch64/neon/intrinsics.c @@ -5623,7 +5623,7 @@ float16x4_t test_vcvt_f16_f32(float32x4_t a) { } // LLVM-LABEL: @test_vcvt_high_f16_f32( -// CIR-LABEL: @vcvt_f16_f32( +// CIR-LABEL: @vcvt_high_f16_f32( float16x8_t test_vcvt_high_f16_f32(float16x4_t a, float32x4_t b) { // CIR: cir.call @vcvt_f16_f32 // CIR: cir.call @vcombine_f16 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
