Skip to content

Commit 452384e

Browse files
committed
Remove A64 check prefix
1 parent eb21803 commit 452384e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

clang/test/AST/ast-dump-aarch64-neon-types.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Test that NEON types are defined, even when arm_neon.h is not included.
22
// as required by AAPCS64 "Support for Advanced SIMD Extensions".
33

4-
// RUN: %clang_cc1 -ast-dump -triple aarch64-linux-gnu %s -x c | FileCheck --check-prefixes=CHECK,A64 %s
5-
// RUN: %clang_cc1 -ast-dump -triple aarch64-linux-gnu %s -x c++ | FileCheck --check-prefixes=CHECK,A64 %s
4+
// RUN: %clang_cc1 -ast-dump -triple aarch64-linux-gnu %s -x c | FileCheck %s
5+
// RUN: %clang_cc1 -ast-dump -triple aarch64-linux-gnu %s -x c++ | FileCheck %s
66
// RUN: %clang_cc1 -verify -verify-ignore-unexpected=note -triple x86_64 %s -x c
77
// RUN: %clang_cc1 -verify -verify-ignore-unexpected=note -triple x86_64 %s -x c++
88
// RUN: %clang_cc1 -verify -verify-ignore-unexpected=note -triple arm-linux-gnu %s -x c
@@ -113,13 +113,13 @@ __Bfloat16x8_t Bfloat16x8;
113113
// expected-error@-2{{unknown type name '__Bfloat16x8_t'}}
114114

115115
__mfp8 mfp8;
116-
// A64: mfp8 '__mfp8'
116+
// CHECK: mfp8 '__mfp8'
117117
// expected-error@-2{{unknown type name '__mfp8'}}
118118

119119
__Mfloat8x8_t Mfloat8x8;
120-
// A64: Mfloat8x8 '__Mfloat8x8_t':'__attribute__((neon_vector_type(8))) __mfp8'
120+
// CHECK: Mfloat8x8 '__Mfloat8x8_t':'__attribute__((neon_vector_type(8))) __mfp8'
121121
// expected-error@-2{{unknown type name '__Mfloat8x8_t'}}
122122

123123
__Mfloat8x16_t Mfloat8x16;
124-
// A64: Mfloat8x16 '__Mfloat8x16_t':'__attribute__((neon_vector_type(16))) __mfp8'
124+
// CHECK: Mfloat8x16 '__Mfloat8x16_t':'__attribute__((neon_vector_type(16))) __mfp8'
125125
// expected-error@-2{{unknown type name '__Mfloat8x16_t'}}

0 commit comments

Comments
 (0)