[Bug fortran/93825] New: [OpenACC] Implicit typing not honored – bogus type errors

burnus at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Wed Feb 19 15:09:00 GMT 2020


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93825

            Bug ID: 93825
           Summary: [OpenACC] Implicit typing not honored – bogus type
                    errors
           Product: gcc
           Version: 10.0
            Status: UNCONFIRMED
          Keywords: openacc, rejects-valid
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: burnus at gcc dot gnu.org
  Target Milestone: ---

In following code, i and j are implicitly typed and of type integer.
Nonetheless, the error is shown:

Error: !$ACC LOOP iteration variable must be of type integer at (1)

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


More information about the Gcc-bugs mailing list