URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [obj-c++.dg/] [tls/] [diag-4.mm] - Rev 703
Compare with Previous | Blame | View Log
/* Invalid __thread specifiers. */
/* { dg-require-effective-target tls } */
__thread typedef int g4; /* { dg-error "multiple storage classes in declaration of" } */
void foo()
{
__thread auto int l2; /* { dg-error "multiple storage classes in declaration of" } */
__thread register int l4; /* { dg-error "multiple storage classes in declaration of" } */
}