view libgomp/testsuite/libgomp.fortran/omp_cond4.F90 @ 63:b7f97abdc517 gcc-4.6-20100522

update gcc from gcc-4.5.0 to gcc-4.6
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Mon, 24 May 2010 12:47:05 +0900
parents a06113de4d67
children 84e7813d76e9
line wrap: on
line source

! Test conditional compilation in free form if -fno-openmp
! { dg-options "-fno-openmp" }
   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.26) 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.27) call abort
      end