aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/gomp/strictly-structured-block-3.f90
blob: ae85fa0864386d8b167a3ae4fac17c7b921a1074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
! { dg-do compile }
! { dg-options "-fopenmp" }

program main
  integer :: x, y

  x = 0
  y = 0

  !$omp parallel
    !$omp parallel
    block
      call do_work
    end block
    !$omp end parallel
  !$omp end parallel

  !$omp workshare
  block
    x = 1
    !$omp critical
    block
      y = 3
    end block
  end block

  !$omp sections
  block
    !$omp section
    block
      x = 1
    end block
    x = x + 2
    !$omp section
    call do_work
  end block

  !$omp sections
    !$omp section
    block
    end block
    x = 1
  !$omp end sections

  !$omp sections
  block
    block
    end block
    x = 1
  end block

end program main