10 } __attribute ((aligned (AL
)));
12 static __thread
struct foo f
;
28 int fail
= (((uintptr_t) &f
) & (AL
- 1)) != 0;
29 printf ("&f = %p %s\n", &f
, fail
? "FAIL" : "OK");
32 fail
= (((uintptr_t) &g
) & (AL
- 1)) != 0;
33 printf ("&g = %p %s\n", &g
, fail
? "FAIL" : "OK");