summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tls/opt-3.c
blob: 8e476f657e8e14689fac6181d4879d1d17302816 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O2 -fpic" } */
/* { dg-options "-O2 -fpic -mregparm=3" { target i?86-*-* } } */

extern __thread int i, j, k;
extern void bar(int *, int *, int *);
void foo(void)
{
  bar(&i, &j, &k);
}