2014-02-05 Balaji V. Iyer <balaji.v.iyer@intel.com>
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / block-5.C
blob391f8b660a60d8a3e490bd7b84ea29247739ce2a
1 // { dg-do compile }
3 void foo()
5   #pragma omp master
6     {
7       goto bad1;        // { dg-error "from here" }
8     }
10   #pragma omp master
11     {
12     bad1:               // { dg-error "jump|exits OpenMP" }
13       return;           // { dg-error "invalid exit" }
14     }
17 // { dg-message "error: invalid branch to/from an OpenMP structured block" "" { target *-*-* } 7 }