Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:__attribute__

3 // CHECK: int x __attribute__((aligned(4)));
4 int x __attribute__((aligned(4)));
10 // CHECK: void foo() __attribute__((const));
11 void foo() __attribute__((const));
13 // CHECK: void bar() __attribute__((__const));
14 void bar() __attribute__((__const));
17 // CHECK: void foo1() __attribute__((pure)) __attribute__((noinline));
18 void foo1() __attribute__((noinline, pure));
20 // CHECK: typedef int Small1 __attribute__((mode(byte)));
21 typedef int Small1 __attribute__((mode(byte)));
23 // CHECK: int small __attribute__((mode(byte)));
24 int small __attribute__((mode(byte)));