1 // RUN: %clang_cc1 %s -ast-print -fms-extensions | FileCheck %s
3 // CHECK: int x __attribute__((aligned(4)));
4 int x
__attribute__((aligned(4)));
6 // CHECK: __declspec(align(4)) int y;
7 __declspec(align(4)) int y
;
9 // CHECK: short arr[3] __attribute__((aligned));
10 short arr
[3] __attribute__((aligned
));
12 // CHECK: void foo(void) __attribute__((const));
13 void foo(void) __attribute__((const));
15 // CHECK: void bar(void) __attribute__((__const));
16 void bar(void) __attribute__((__const
));
18 // CHECK: int * __ptr32 p32;
21 // CHECK: int * __ptr64 p64;
24 // CHECK: int * __uptr __ptr32 p32_2;
25 int * __uptr __ptr32 p32_2
;
27 // CHECK: int * __sptr __ptr64 p64_2;
28 int * __sptr __ptr64 p64_2
;
30 // CHECK: int * __uptr __ptr32 p32_3;
31 int * __uptr __ptr32 p32_3
;
33 // CHECK: int * __sptr * __ptr32 ppsp32;
34 int * __sptr
* __ptr32 ppsp32
;
36 // CHECK: __attribute__((availability(macos, strict, introduced=10.6)));
37 void f6(int) __attribute__((availability(macosx
,strict
,introduced
=10.6)));