brintos

brintos / llvm-project-archived public Read only

0
0
Text · 378 B · d34d97e Raw
15 lines · plain
1! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenacc2 3subroutine test_sentinel()4! Test for error since we currently do not have an OpenACC module upstream.5!ERROR: Cannot parse module file for module 'openacc': Source file 'openacc.mod' was not found6  !@acc use openacc7  integer :: i8 9  !$acc parallel loop10  do i = 1, 1011  end do12  !$acc end parallel13 14end subroutine15