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

Reply via email to