]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/tls/opt-9.c
gcc/
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tls / opt-9.c
1 /* PR 21412 */
2 /* { dg-do compile */
3 /* { dg-options "-O2 -fPIC" } */
4
5 struct S { int x[10]; };
6 extern __thread struct S s;
7 int *foo() { return &s.x[2]; }