[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / PCH / aarch64-sve-types.c
blobd9be6daa127e74633a2b7a7ef4d08a4efb6bf60b
1 // RUN: %clang_cc1 -triple aarch64-linux-gnu -emit-pch -o %t %s
2 // RUN: %clang_cc1 -triple aarch64-linux-gnu -include-pch %t \
3 // RUN: -fsyntax-only -verify %s
5 // expected-no-diagnostics
7 __SVInt8_t *s8;
8 __SVInt16_t *s16;
9 __SVInt32_t *s32;
10 __SVInt64_t *s64;
12 __SVUint8_t *u8;
13 __SVUint16_t *u16;
14 __SVUint32_t *u32;
15 __SVUint64_t *u64;
17 __SVFloat16_t *f16;
18 __SVFloat32_t *f32;
19 __SVFloat64_t *f64;
21 __SVBFloat16_t *bf16;
23 __SVBool_t *b8;