Files
clang-p2996/flang/test/Semantics/OpenMP/do19.f90
Kiran Chandramohan 3323a4bd3d [Flang][OpenMP] NFC: Remove omp prefix of test files in OpenMP Semantics
For tests in the OpenMP sub-directory the `omp` prefix is removed.
2023-02-25 11:21:38 +00:00

26 lines
397 B
Fortran

! RUN: %flang_fc1 -fopenmp -fdebug-unparse-with-symbols %s 2>&1 | FileCheck %s
! CHECK-NOT: do *[1-9]
! CHECK: omp simd
program P
implicit none
integer N, I
parameter (N=100)
real A(N), B(N), C(N)
!$OMP SIMD
do 10 I = 1, N
A(I) = I * 1.0
10 continue
B = A
!$OMP SIMD
do 20 I = 1, N
C(I) = A(I) + B(I)
write (*,100) I, C(I)
20 continue
100 format(" C(", I3, ")=", F8.2)
end program P