brintos

brintos / llvm-project-archived public Read only

0
0
Text · 389 B · 81f87d8 Raw
15 lines · plain
1! RUN: not %flang_fc1 -fdebug-unparse-with-symbols -fopenmp %s 2>&1 | FileCheck %s2! OpenMP Version 4.53! 2.7.1 Loop Construct4program omp_doCollapse5  integer:: i6  !$omp parallel do collapse(2)7    do i = 1, 38      !CHECK: Loop control is not present in the DO LOOP9      !CHECK: associated with the enclosing LOOP construct10      do11      end do12    end do13end program omp_doCollapse14 15