comparison 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
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 ! { dg-do compile }
2 !
3 ! PR fortran/93825
4 !
5 ! Check that implicit typing works
6
7 program p
8 !$acc parallel loop tile(2,2)
9 do i = 1, 8
10 do j = 1, 8
11 end do
12 end do
13 end