19 lines · plain
1! RUN: %python %S/../test_symbols.py %s %flang_fc1 -fopenmp2 3! Check that loop iteration variables are private and predetermined, even when4! nested inside parallel/critical constructs.5 6!DEF: /test1 (Subroutine) Subprogram7subroutine test18 !DEF: /test1/i ObjectEntity INTEGER(4)9 integer i10 11 !$omp parallel default(none)12 !$omp critical13 !DEF: /test1/OtherConstruct1/i (OmpPrivate, OmpPreDetermined) HostAssoc INTEGER(4)14 do i = 1, 1015 end do16 !$omp end critical17 !$omp end parallel18end subroutine19