[Bug middle-end/83837] [8 regression] libgomp.fortran/pointer[12].f90 FAIL

jakub at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Mon Jan 15 13:58:00 GMT 2018


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase:
subroutine foo (c)
  integer, pointer :: c(:), d(:)
  d => c
  !$omp parallel firstprivate (d)
    !$omp atomic
      d(1) = d(1) + 1
  !$omp end parallel
end subroutine foo


More information about the Gcc-bugs mailing list