https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77371
--- Comment #2 from Gerhard Steinmetz
---
Related :
$ cat z6.f90
program p
integer, allocatable :: n
!$acc parallel reduction (+:n) private(n)
!$acc end parallel
end
$ gfortran-7-20160821 -fopenacc z6.f90
z6.f90:3:0:
!$acc parallel redu
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77371
--- Comment #1 from Gerhard Steinmetz
---
$ cat z2.f90
program p
integer, allocatable :: z
!$acc parallel
z = 1
!$acc end parallel
print *, z
end
$ gfortran-7-20160821 -fopenacc z2.f90
z2.f90:2:0:
integer, allocatable :: z