[PATCH] RISC-V: Bugfix for unrecognizable insn for XTheadVector
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / map-inc-1.C
blobb469a4bd54859d9952f2ff5d8217e23604dd8be5
1 int main (int argc, char *argv[])
3   int a = 5;
4 #pragma omp target map(++a)
5   /* { dg-message {sorry, unimplemented: unsupported map expression '\+\+ a'} "" { target *-*-* } .-1 } */
6   {
7     a++;
8   }
9   return 0;