1 | extern void f() __attribute__((const)); |
---|---|
2 | |
3 | struct S { |
4 | struct { |
5 | int a __attribute__((packed)); |
6 | }; |
7 | }; |
8 | |
9 | void stmt() { |
10 | #pragma unroll |
11 | for (;;) |
12 | ; |
13 | } |
14 |
1 | extern void f() __attribute__((const)); |
---|---|
2 | |
3 | struct S { |
4 | struct { |
5 | int a __attribute__((packed)); |
6 | }; |
7 | }; |
8 | |
9 | void stmt() { |
10 | #pragma unroll |
11 | for (;;) |
12 | ; |
13 | } |
14 |