brintos

brintos / llvm-project-archived public Read only

0
0
Text · 324 B · 62336c7 Raw
14 lines · plain
1! RUN: %flang_fc1 -fopenmp -fsyntax-only %s2 3! Check that using %re/%im inside 'parallel' doesn't cause syntax errors.4subroutine test_complex_re_im5  complex :: cc(4) = (1,2)6  integer :: i7 8  !$omp parallel do private(cc)9    do i = 1, 410      print *, cc(i)%re, cc(i)%im11    end do12  !$omp end parallel do13end subroutine14