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/15959] New: ICE and assertion failure in trans-decl.c


A piece of valid code generates this message after failing with
an ICE.


troogle> gfortran -v -c n7.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 n7.f95 
-quiet -dumpbase n7.f95 -auxbase n7 -version -o /var/tmp//ccm4Y9yt.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

Assertion failed: !sym->value, file ../../gcc/fortran/trans-decl.c, line 837
n7.f95: In function `pdate':
n7.f95:15: internal compiler error: Aborted


      function pdate()

      implicit none
      character(20)            :: pdate
      integer                  :: i(8)
      character(9)             :: month
      character(*), parameter  :: mname(12) = (/ 'January  ','February ',  &
                                                 'March    ','April    ',  &
                                                 'May      ','June     ',  &
                                                 'July     ','August   ',  &
                                                 'September','October  ',  &
                                                 'November ','December '   /)


      month = mname(i(2))

      end function pdate

-- 
           Summary: ICE and assertion failure in trans-decl.c
           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 sci dot kun dot nl
                CC: gcc-bugs at gcc dot gnu dot org


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


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