[PATCH] RISC-V: Bugfix for unrecognizable insn for XTheadVector
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / pr78363-1.C
blob7d89d0cdb510ba64f01dcc775b931313bbcb0cbc
1 // { dg-do compile }
2 // { dg-require-effective-target c++11 }
3 // { dg-additional-options "-g" }
5 int main()
7   int n = 0;
9 #pragma omp parallel for reduction (+: n)
10   for (int i = [](){ return 3; }(); i < 10; ++i)
11     n++;
13   return n;