Author: Andy Kaylor Date: 2026-08-26T17:02:06-07:00 New Revision: a10e7d3117a4984cfb6c1864421ad6806fb641e3
URL: https://github.com/llvm/llvm-project/commit/a10e7d3117a4984cfb6c1864421ad6806fb641e3 DIFF: https://github.com/llvm/llvm-project/commit/a10e7d3117a4984cfb6c1864421ad6806fb641e3.diff LOG: [CIR][AARCH64] Fix neon conversion test (#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. Added: Modified: clang/test/CodeGen/AArch64/neon/intrinsics.c Removed: ################################################################################ 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
