3ce1f29594
Make several tool features mandatory and simplify the code.
10 lines
117 B
C
10 lines
117 B
C
#include <tls.h>
|
|
|
|
__thread int a[2] __attribute__ ((tls_model ("initial-exec")));
|
|
|
|
int
|
|
foo (void)
|
|
{
|
|
return a[0];
|
|
}
|