gcc/tests/smoke-test/thr-init-2.c
Václav Kadlčík 751e68f594 Align testing configuration with c9s
plans/ci.fmf we had here wasn't particularly useful, it duplicated
osci_compose_gate (see gating.yaml).

The testing configuration in c9s is at the moment in a better shape,
thanks to RHEL-69756. Let's align c10s with c9s.
2024-12-03 13:49:24 +01:00

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;
}