repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
PCH
/
aarch64-sve-types.c
blob
d9be6daa127e74633a2b7a7ef4d08a4efb6bf60b
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
4
5
// expected-no-diagnostics
6
7
__SVInt8_t
*
s8
;
8
__SVInt16_t
*
s16
;
9
__SVInt32_t
*
s32
;
10
__SVInt64_t
*
s64
;
11
12
__SVUint8_t
*
u8
;
13
__SVUint16_t
*
u16
;
14
__SVUint32_t
*
u32
;
15
__SVUint64_t
*
u64
;
16
17
__SVFloat16_t
*
f16
;
18
__SVFloat32_t
*
f32
;
19
__SVFloat64_t
*
f64
;
20
21
__SVBFloat16_t
*
bf16
;
22
23
__SVBool_t
*
b8
;