PeixinQiao b826d551fc [NFC] Move flang OpenMP semantic tests under one single directory
To be consistent with OpenACC and will find the tests in one single
directory for OpenMP.

Reviewed By: kiranchandramohan

Differential Revision: https://reviews.llvm.org/D127529
2022-06-11 10:46:42 +08: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