mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
25 lines
486 B
Fortran
25 lines
486 B
Fortran
! Test conditional compilation in free form if -fopenmp
|
|
! { dg-options "-fopenmp" }
|
|
10 foo = 2&
|
|
&56
|
|
if (foo.ne.256) call abort
|
|
bar = 26
|
|
!$ 20 ba&
|
|
!$ &r = 4&
|
|
!$2
|
|
!$bar = 62
|
|
!$ bar = bar + 2
|
|
#ifdef _OPENMP
|
|
bar = bar - 1
|
|
#endif
|
|
if (bar.ne.43) call abort
|
|
baz = bar
|
|
!$ 30 baz = 5& ! Comment
|
|
!$12 &
|
|
!$ + 2
|
|
!$X baz = 0 ! Not valid OpenMP conditional compilation lines
|
|
! $ baz = 1
|
|
baz = baz + 1 !$ baz = 2
|
|
if (baz.ne.515) call abort
|
|
end
|