mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
9 lines
132 B
C
9 lines
132 B
C
__thread int b[2] __attribute__ ((tls_model ("initial-exec")));
|
|
|
|
extern int foo (void);
|
|
|
|
int
|
|
bar (void)
|
|
{
|
|
return foo () + b[0];
|
|
}
|