diff options
Diffstat (limited to 'gcc/testsuite/obj-c++.dg/tls/diag-4.mm')
-rw-r--r-- | gcc/testsuite/obj-c++.dg/tls/diag-4.mm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/testsuite/obj-c++.dg/tls/diag-4.mm b/gcc/testsuite/obj-c++.dg/tls/diag-4.mm new file mode 100644 index 000000000..10ac2aada --- /dev/null +++ b/gcc/testsuite/obj-c++.dg/tls/diag-4.mm @@ -0,0 +1,10 @@ +/* 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" } */ +} |