[RTL ifcvt] PR 67786, 67787: Check that intermediate instructions in the basic block...
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / flush-1.c
blob74a24a86105c9c74b0da0c9a773ce9a3e928393d
1 /* { dg-do compile } */
2 /* { dg-options "-fopenmp -fdump-tree-gimple" } */
4 void f1(void)
6 #pragma omp flush
9 int x, y, z;
11 void f2(_Bool p)
13 if (p)
15 #pragma omp flush (x)
17 else
19 #pragma omp flush (x, y, z)
23 /* { dg-final { scan-tree-dump-times "__sync_synchronize" 3 "gimple" } } */