12 } __attribute ((aligned (AL
)));
14 static __thread
struct foo f
;
30 int fail
= (((uintptr_t) &f
) & (AL
- 1)) != 0;
31 printf ("&f = %p %s\n", &f
, fail
? "FAIL" : "OK");
34 fail
= (((uintptr_t) &g
) & (AL
- 1)) != 0;
35 printf ("&g = %p %s\n", &g
, fail
? "FAIL" : "OK");