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.2.2/] [gcc/] [testsuite/] [gcc.dg/] [tls/] [diag-4.c] - Rev 154
Compare with Previous | Blame | View Log
/* Invalid __thread specifiers. As diag-4.c but some cases in different orders. */ /* { dg-require-effective-target tls } */ __thread typedef int g4; /* { dg-error "'__thread' used with 'typedef'" } */ void foo() { __thread auto int l2; /* { dg-error "'__thread' used with 'auto'" } */ __thread register int l4; /* { dg-error "'__thread' used with 'register'" } */ }