[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / pr37189.C
bloba83957ea2a34fc5143779a7b20c4155506666fda
1 // PR c++/37189
2 // { dg-do compile }
3 // { dg-options "-fopenmp" }
5 struct S
7   S () {}
8   S (S const &) {}
9 };
11 struct T
13   S s;
16 void
17 bar (T &)
21 void
22 foo ()
24   T t;
25   #pragma omp task
26     bar (t);