Richard Smith | 5cd532c | 2013-01-29 01:24:26 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -ast-print -fms-extensions | FileCheck %s |
Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2 | |
Michael Han | a31f65b | 2013-02-01 01:19:17 +0000 | [diff] [blame^] | 3 | // CHECK: int x __attribute__((aligned(4))); |
Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4 | int x __attribute__((aligned(4))); |
| 5 | |
Richard Smith | 5cd532c | 2013-01-29 01:24:26 +0000 | [diff] [blame] | 6 | // FIXME: Print this at a valid location for a __declspec attr. |
Michael Han | a31f65b | 2013-02-01 01:19:17 +0000 | [diff] [blame^] | 7 | // CHECK: int y __declspec(align(4)); |
Richard Smith | 5cd532c | 2013-01-29 01:24:26 +0000 | [diff] [blame] | 8 | __declspec(align(4)) int y; |
Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 9 | |
| 10 | // CHECK: void foo() __attribute__((const)); |
| 11 | void foo() __attribute__((const)); |
| 12 | |
| 13 | // CHECK: void bar() __attribute__((__const)); |
| 14 | void bar() __attribute__((__const)); |
Richard Smith | cae4a5c | 2013-01-29 02:31:57 +0000 | [diff] [blame] | 15 | |
| 16 | // FIXME: Print these at a valid location for these attributes. |
| 17 | // CHECK: int *p32 __ptr32; |
| 18 | int * __ptr32 p32; |
| 19 | |
| 20 | // CHECK: int *p64 __ptr64; |
| 21 | int * __ptr64 p64; |