brintos

brintos / llvm-project-archived public Read only

0
0
Text · 257 B · 205e67a Raw
20 lines · plain
1! RUN: %python %S/../test_errors.py %s %flang -fopenacc2 3program openacc_clause_validity4 5  implicit none6 7  integer :: i, n8 9  i = 010 11  !ERROR: A DO loop must follow the LOOP directive12  !$acc loop13  i = 114 15  !$acc loop16  do 100 i=0, n17  100 continue18 19end20