Test for stack alignment.
[jlayton/glibc.git] / linuxthreads / tst-tls1mode.c
1 #include <tst-tls1.h>
2
3 #ifdef TLS_REGISTER
4 static __thread int e1 = 24;
5 static __thread char e2 [32] __attribute__ ((aligned (64)));
6 TLS_REGISTER (e1)
7 TLS_REGISTER (e2)
8 #endif