8230ff782d
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/gcc.git#ac8f498836cb54282caf6ee9c6bb0c179029c18c
25 lines
359 B
C
25 lines
359 B
C
/* { dg-do run } */
|
|
/* { dg-require-effective-target tls_runtime } */
|
|
/* { dg-add-options tls } */
|
|
|
|
extern void abort() ;
|
|
|
|
static __thread int fstat ;
|
|
static __thread int fstat = 1;
|
|
|
|
int test_code(int b)
|
|
{
|
|
fstat += b ;
|
|
return fstat;
|
|
}
|
|
|
|
int main (int ac, char *av[])
|
|
{
|
|
int a = test_code(1);
|
|
|
|
if ((a != 2) || (fstat != 2))
|
|
abort () ;
|
|
|
|
return 0;
|
|
}
|