Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -ast-print | FileCheck %s |
2 | |||||
3 | // FIXME: align attribute print | ||||
4 | |||||
5 | // CHECK: int x __attribute__((aligned(4, 0))); | ||||
6 | int x __attribute__((aligned(4))); | ||||
7 | |||||
8 | // CHECK: int y __attribute__((align(4, 0))); | ||||
9 | int y __attribute__((align(4))); | ||||
10 | |||||
11 | // CHECK: void foo() __attribute__((const)); | ||||
12 | void foo() __attribute__((const)); | ||||
13 | |||||
14 | // CHECK: void bar() __attribute__((__const)); | ||||
15 | void bar() __attribute__((__const)); |