blob: 2659508e562580f292bf334d71a3cb7d6e0cc3e9 [file] [log] [blame]
Richard Smith5cd532c2013-01-29 01:24:26 +00001// RUN: %clang_cc1 %s -ast-print -fms-extensions | FileCheck %s
Michael Han51d8c522013-01-24 16:46:58 +00002
Michael Hana31f65b2013-02-01 01:19:17 +00003// CHECK: int x __attribute__((aligned(4)));
Michael Han51d8c522013-01-24 16:46:58 +00004int x __attribute__((aligned(4)));
5
Richard Smith5cd532c2013-01-29 01:24:26 +00006// FIXME: Print this at a valid location for a __declspec attr.
Michael Hana31f65b2013-02-01 01:19:17 +00007// CHECK: int y __declspec(align(4));
Richard Smith5cd532c2013-01-29 01:24:26 +00008__declspec(align(4)) int y;
Michael Han51d8c522013-01-24 16:46:58 +00009
10// CHECK: void foo() __attribute__((const));
11void foo() __attribute__((const));
12
13// CHECK: void bar() __attribute__((__const));
14void bar() __attribute__((__const));
Richard Smithcae4a5c2013-01-29 02:31:57 +000015
16// FIXME: Print these at a valid location for these attributes.
17// CHECK: int *p32 __ptr32;
18int * __ptr32 p32;
19
20// CHECK: int *p64 __ptr64;
21int * __ptr64 p64;