blob: cae702f67c334ea881bfd55915882ba391909f8b [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001static int __thread tbar __attribute__ ((tls_model ("initial-exec"))) = 666;
2
3void
4setter (int a)
5{
6 tbar = a;
7}
8
9int
10bar (void)
11{
12 return tbar;
13}