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 | |
| 3 | // FIXME: align attribute print |
| 4 | |
| 5 | // CHECK: int x __attribute__((aligned(4, 0))); |
| 6 | int x __attribute__((aligned(4))); |
| 7 | |
Richard Smith | 5cd532c | 2013-01-29 01:24:26 +0000 | [diff] [blame^] | 8 | // FIXME: Print this at a valid location for a __declspec attr. |
| 9 | // CHECK: int y __declspec(align(4, 1)); |
| 10 | __declspec(align(4)) int y; |
Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 11 | |
| 12 | // CHECK: void foo() __attribute__((const)); |
| 13 | void foo() __attribute__((const)); |
| 14 | |
| 15 | // CHECK: void bar() __attribute__((__const)); |
| 16 | void bar() __attribute__((__const)); |