mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 16:20:06 +00:00
8 lines
99 B
C
8 lines
99 B
C
|
__thread int a[2] __attribute__ ((tls_model ("initial-exec")));
|
||
|
|
||
|
int
|
||
|
foo (void)
|
||
|
{
|
||
|
return a[0];
|
||
|
}
|