1 __thread int a[2] __attribute__ ((tls_model ("initial-exec")));
2 
3 int
foo(void)4 foo (void)
5 {
6   return a[0];
7 }
8