This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/15975] New: ICE in trans-array.c pointer array initialization stuff


troogle> gfortran -v -c n22.f95 
Reading specs from /OPT/32/gcc-2004-06-09/lib/gcc/hppa2.0w-hp-hpux11.11/3.5.
0/specs
Configured with: ../configure --enable-languages=c,f95 
--prefix=/opt32/gcc-2004-06-09 --with-gmp=/opt32/gmp --with-gnu-as 
--with-as=/opt32/binutils/bin/as --enable-threads --disable-shared --disable-nls
Thread model: posix
gcc version 3.5.0 20040611 (experimental)
 /OPT/32/gcc-2004-06-09/libexec/gcc/hppa2.0w-hp-hpux11.11/3.5.0/f951 n22.f95 
-quiet -dumpbase n22.f95 -auxbase n22 -version -o /var/tmp//ccMNlkkT.s
GNU F95 version 3.5.0 20040611 (experimental) (hppa2.0w-hp-hpux11.11)
        compiled by GNU C version 3.5.0 20040611 (experimental).
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096


n22.f95: In function `pm_get':
n22.f95:11: internal compiler error: in gfc_conv_array_initializer, at 
fortran/trans-array.c:2726




module propmats

      type prm
          real, pointer :: par(:) => null()
      end type prm

      type(prm), save, target  :: pm(20)

contains

      subroutine pm_get(w)

      implicit none
      character(*), intent(in)  :: w
      type(prm), pointer        :: z
      

      z  => pm(1)

      end subroutine pm_get

end module propmats

-- 
           Summary: ICE in trans-array.c    pointer array initialization
                    stuff
           Product: gcc
           Version: 3.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Mart dot Rentmeester at nn-online dot org
                CC: gcc-bugs at gcc dot gnu dot org


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]