mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
10 lines
132 B
C
10 lines
132 B
C
|
__thread int b[2] __attribute__ ((tls_model ("initial-exec")));
|
||
|
|
||
|
extern int foo (void);
|
||
|
|
||
|
int
|
||
|
bar (void)
|
||
|
{
|
||
|
return foo () + b[0];
|
||
|
}
|