[PATCH] RISC-V: Bugfix for unrecognizable insn for XTheadVector
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / pr49223-2.C
blobb367b0419b8c776e8d8ea3df3b7b7b800916c7cc
1 // PR c++/49223
2 // { dg-do compile }
3 // { dg-require-effective-target tls }
4 // { dg-options "-fopenmp" }
6 struct S;                       // { dg-message "forward declaration" }
7 extern __thread struct S s;     // { dg-error "has incomplete type" }
8 struct T;
9 extern __thread struct T t;
11 void
12 foo ()
14   #pragma omp parallel copyin (s)
15     ;