From ee7d0dcb20519710b3dac6cc16d5a7a25d312355 Mon Sep 17 00:00:00 2001 From: PikachuHy Date: Thu, 21 Nov 2024 01:20:22 +0800 Subject: [PATCH] fix test failed, neon.c --- clang/test/CIR/CodeGen/AArch64/neon.c | 32 +++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/clang/test/CIR/CodeGen/AArch64/neon.c b/clang/test/CIR/CodeGen/AArch64/neon.c index 278e6e86cb09..bff4999b5b39 100644 --- a/clang/test/CIR/CodeGen/AArch64/neon.c +++ b/clang/test/CIR/CodeGen/AArch64/neon.c @@ -10000,7 +10000,7 @@ uint8x16_t test_vld1q_u8(uint8_t const *a) { // CIR: cir.load align(1) %[[CAST]] : !cir.ptr>, !cir.vector // LLVM-LABEL: @test_vld1q_u8 - // LLVM: [[TMP1:%.*]] = load <16 x i8>, ptr %0, align 1, + // LLVM: [[TMP1:%.*]] = load <16 x i8>, ptr %0, align 1 } uint16x8_t test_vld1q_u16(uint16_t const *a) { @@ -10010,7 +10010,7 @@ uint16x8_t test_vld1q_u16(uint16_t const *a) { // CIR: cir.load align(2) %[[CAST]] : !cir.ptr>, !cir.vector // LLVM-LABEL: @test_vld1q_u16 - // LLVM: [[TMP1:%.*]] = load <8 x i16>, ptr %0, align 2, + // LLVM: [[TMP1:%.*]] = load <8 x i16>, ptr %0, align 2 } uint32x4_t test_vld1q_u32(uint32_t const *a) { @@ -10020,7 +10020,7 @@ uint32x4_t test_vld1q_u32(uint32_t const *a) { // CIR: cir.load align(4) %[[CAST]] : !cir.ptr>, !cir.vector // LLVM-LABEL: @test_vld1q_u32 - // LLVM: [[TMP1:%.*]] = load <4 x i32>, ptr %0, align 4, + // LLVM: [[TMP1:%.*]] = load <4 x i32>, ptr %0, align 4 } uint64x2_t test_vld1q_u64(uint64_t const *a) { @@ -10030,7 +10030,7 @@ uint64x2_t test_vld1q_u64(uint64_t const *a) { // CIR: cir.load align(8) %[[CAST]] : !cir.ptr>, !cir.vector // LLVM-LABEL: @test_vld1q_u64 - // LLVM: [[TMP1:%.*]] = load <2 x i64>, ptr %0, align 8, + // LLVM: [[TMP1:%.*]] = load <2 x i64>, ptr %0, align 8 } int8x16_t test_vld1q_s8(int8_t const *a) { @@ -10040,7 +10040,7 @@ int8x16_t test_vld1q_s8(int8_t const *a) { // CIR: cir.load align(1) %[[CAST]] : !cir.ptr>, !cir.vector // LLVM-LABEL: @test_vld1q_s8 - // LLVM: [[TMP1:%.*]] = load <16 x i8>, ptr %0, align 1, + // LLVM: [[TMP1:%.*]] = load <16 x i8>, ptr %0, align 1 } int16x8_t test_vld1q_s16(int16_t const *a) { @@ -10050,7 +10050,7 @@ int16x8_t test_vld1q_s16(int16_t const *a) { // CIR: cir.load align(2) %[[CAST]] : !cir.ptr>, !cir.vector // LLVM-LABEL: @test_vld1q_s16 - // LLVM: [[TMP1:%.*]] = load <8 x i16>, ptr %0, align 2, + // LLVM: [[TMP1:%.*]] = load <8 x i16>, ptr %0, align 2 } int32x4_t test_vld1q_s32(int32_t const *a) { @@ -10060,7 +10060,7 @@ int32x4_t test_vld1q_s32(int32_t const *a) { // CIR: cir.load align(4) %[[CAST]] : !cir.ptr>, !cir.vector // LLVM-LABEL: @test_vld1q_s32 - // LLVM: [[TMP1:%.*]] = load <4 x i32>, ptr %0, align 4, + // LLVM: [[TMP1:%.*]] = load <4 x i32>, ptr %0, align 4 } int64x2_t test_vld1q_s64(int64_t const *a) { @@ -10070,7 +10070,7 @@ int64x2_t test_vld1q_s64(int64_t const *a) { // CIR: cir.load align(8) %[[CAST]] : !cir.ptr>, !cir.vector // LLVM-LABEL: @test_vld1q_s64 - // LLVM: [[TMP1:%.*]] = load <2 x i64>, ptr %0, align 8, + // LLVM: [[TMP1:%.*]] = load <2 x i64>, ptr %0, align 8 } // NYI-LABEL: @test_vld1q_f16( @@ -11233,7 +11233,7 @@ void test_vst1q_u8(uint8_t *a, uint8x16_t b) { // CIR: cir.store align(1) %{{.*}}, %[[CAST]] : !cir.vector, !cir.ptr> // LLVM-LABEL: @test_vst1q_u8 - // LLVM: store <16 x i8> %{{.*}}, ptr %0, align 1, + // LLVM: store <16 x i8> %{{.*}}, ptr %0, align 1 } void test_vst1q_u16(uint16_t *a, uint16x8_t b) { @@ -11243,7 +11243,7 @@ void test_vst1q_u16(uint16_t *a, uint16x8_t b) { // CIR: cir.store align(2) %{{.*}}, %[[CAST]] : !cir.vector, !cir.ptr> // LLVM-LABEL: @test_vst1q_u16 - // LLVM: store <8 x i16> %{{.*}}, ptr %0, align 2, + // LLVM: store <8 x i16> %{{.*}}, ptr %0, align 2 } void test_vst1q_u32(uint32_t *a, uint32x4_t b) { @@ -11253,7 +11253,7 @@ void test_vst1q_u32(uint32_t *a, uint32x4_t b) { // CIR: cir.store align(4) %{{.*}}, %[[CAST]] : !cir.vector, !cir.ptr> // LLVM-LABEL: @test_vst1q_u32 - // LLVM: store <4 x i32> %{{.*}}, ptr %0, align 4, + // LLVM: store <4 x i32> %{{.*}}, ptr %0, align 4 } void test_vst1q_u64(uint64_t *a, uint64x2_t b) { @@ -11263,7 +11263,7 @@ void test_vst1q_u64(uint64_t *a, uint64x2_t b) { // CIR: cir.store align(8) %{{.*}}, %[[CAST]] : !cir.vector, !cir.ptr> // LLVM-LABEL: @test_vst1q_u64 - // LLVM: store <2 x i64> %{{.*}}, ptr %0, align 8, + // LLVM: store <2 x i64> %{{.*}}, ptr %0, align 8 } void test_vst1q_s8(int8_t *a, int8x16_t b) { @@ -11273,7 +11273,7 @@ void test_vst1q_s8(int8_t *a, int8x16_t b) { // CIR: cir.store align(1) %{{.*}}, %[[CAST]] : !cir.vector, !cir.ptr> // LLVM-LABEL: @test_vst1q_s8 - // LLVM: store <16 x i8> %{{.*}}, ptr %0, align 1, + // LLVM: store <16 x i8> %{{.*}}, ptr %0, align 1 } void test_vst1q_s16(int16_t *a, int16x8_t b) { @@ -11283,7 +11283,7 @@ void test_vst1q_s16(int16_t *a, int16x8_t b) { // CIR: cir.store align(2) %{{.*}}, %[[CAST]] : !cir.vector, !cir.ptr> // LLVM-LABEL: @test_vst1q_s16 - // LLVM: store <8 x i16> %{{.*}}, ptr %0, align 2, + // LLVM: store <8 x i16> %{{.*}}, ptr %0, align 2 } void test_vst1q_s32(int32_t *a, int32x4_t b) { @@ -11293,7 +11293,7 @@ void test_vst1q_s32(int32_t *a, int32x4_t b) { // CIR: cir.store align(4) %{{.*}}, %[[CAST]] : !cir.vector, !cir.ptr> // LLVM-LABEL: @test_vst1q_s32 - // LLVM: store <4 x i32> %{{.*}}, ptr %0, align 4, + // LLVM: store <4 x i32> %{{.*}}, ptr %0, align 4 } void test_vst1q_s64(int64_t *a, int64x2_t b) { @@ -11303,7 +11303,7 @@ void test_vst1q_s64(int64_t *a, int64x2_t b) { // CIR: cir.store align(8) %{{.*}}, %[[CAST]] : !cir.vector, !cir.ptr> // LLVM-LABEL: @test_vst1q_s64 - // LLVM: store <2 x i64> %{{.*}}, ptr %0, align 8, + // LLVM: store <2 x i64> %{{.*}}, ptr %0, align 8 } // NYI-LABEL: @test_vst1q_f16(