blob: d5cb87aaba32da44e659adcf5c617721bc619878 [file] [log] [blame]
! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
! Check OpenMP 2.13.6 atomic Construct
a = 1.0
!$omp parallel num_threads(4)
!$omp atomic seq_cst, read
b = a
!$omp atomic seq_cst write
a = b
!$omp end atomic
!$omp atomic capture seq_cst
b = a
a = a + 1
!$omp end atomic
!$omp atomic
a = a + 1
!$omp end parallel
end