URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [tls/] [thr-init-1.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-require-effective-target tls_runtime } */ /* { dg-add-options tls } */ extern int printf (char *,...); extern void abort() ; int test_code(int b) { static __thread int fstat = 1; fstat += b ; return fstat; } int main (int ac, char *av[]) { int a = test_code(1); if ( a != 2 ) { printf ("a=%d\n", a) ; abort (); } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log