brintos

brintos / llvm-project-archived public Read only

0
0
Text · 634 B · 51b69fc Raw
23 lines · plain
1! RUN: %python %S/../test_symbols.py %s %flang_fc1 -fopenmp2! OpenMP Version 4.53! 2.7.1 Do Loop Constructs4 5!DEF: /OMP_DO1 MainProgram6program OMP_DO17  !DEF: /OMP_DO1/i ObjectEntity INTEGER(4)8  !DEF: /OMP_DO1/j ObjectEntity INTEGER(4)9  !DEF: /OMP_DO1/k (OmpThreadprivate) ObjectEntity INTEGER(4)10  !DEF: /OMP_DO1/n (OmpThreadprivate) ObjectEntity INTEGER(4)11  integer i, j, k, n12  !$omp threadprivate (k,n)13  !$omp do14  !DEF: /OMP_DO1/OtherConstruct1/i (OmpPrivate, OmpPreDetermined) HostAssoc INTEGER(4)15  do i=1,1016    !REF: /OMP_DO1/j17    do j=1,1018      print *, "Hello"19    end do20  end do21  !$omp end do22end program OMP_DO123