brintos

brintos / llvm-project-archived public Read only

0
0
Text · 273 B · 2a6ef00 Raw
13 lines · plain
1! RUN: %python %S/../test_errors.py %s %flang -fopenmp2! Test declare simd with linear clause does not cause an implicit declaration of i3 4module mod5contains6subroutine test(i)7!$omp declare simd linear(i:1)8  implicit none9  integer*8 i10  i=i+211end subroutine12end module13