URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [tls/] [opt-11.c] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do run } */ /* { dg-require-effective-target tls_runtime } */ extern void abort (void); extern void *memset (void *, int, __SIZE_TYPE__); struct A { char pad[48]; int i; int pad2; int j; }; __thread struct A a; int * __attribute__((noinline)) foo (void) { return &a.i; } int main (void) { int *p = foo (); memset (&a, 0, sizeof (a)); a.i = 6; a.j = 8; if (p[0] != 6 || p[1] != 0 || p[2] != 8) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log