URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [tls/] [opt-9.c] - Rev 404
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 21412 */ /* { dg-do compile */ /* { dg-require-effective-target fpic } */ /* { dg-options "-O2 -fPIC" } */ /* { dg-require-effective-target tls } */ struct S { int x[10]; }; extern __thread struct S s; int *foo() { return &s.x[2]; }
Go to most recent revision | Compare with Previous | Blame | View Log