[PATCH] RISC-V: Bugfix for unrecognizable insn for XTheadVector
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / map-lvalue-ref-1.C
blob2f75b238ebd035f5fec5f418ab90fe38ec92662c
1 // { dg-skip-if "requires hosted libstdc++ for cassert" { ! hostedlib } }
3 #include <cassert>
5 int glob = 10;
7 int& foo ()
9   return glob;
12 int main (int argc, char *argv[])
14 #pragma omp target map(foo())
15   /* { dg-message {sorry, unimplemented: unsupported map expression 'foo\(\)'} "" { target *-*-* } .-1 } */
16   {
17     foo()++;
18   }
19   assert (glob == 11);
20   return 0;