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