------- Comment #2 from kargl at gcc dot gnu dot org  2009-10-07 23:21 -------
Here's a reduced testcase.

module testmod
   type variables_maille
      real, dimension(5) :: cell_var
   end type variables_maille
   type(variables_maille), pointer, dimension(:,:,:) :: hydro_vars
   common /arrays/ ro
   real, pointer, dimension(:) :: ro
end module testmod

subroutine tf_ad_splitting_driver_plane
   use testmod
   implicit none
   ro => hydro_vars(1:1,1,1)%cell_var(1)
end subroutine tf_ad_splitting_driver_plane


-- 

kargl at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
      Known to fail|                            |4.4.1 4.4.2 4.5.0
   Last reconfirmed|0000-00-00 00:00:00         |2009-10-07 23:21:34
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41627

Reply via email to