view gcc/testsuite/gfortran.dg/goacc/tile-3.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

! { dg-do compile }
!
! PR fortran/93825
!
! Check that implicit typing works

program p
   !$acc parallel loop tile(2,2)
   do i = 1, 8
      do j = 1, 8
      end do
   end do
end