public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/16609] New: ICE: in make_decl_rtl, at varasm.c:758
@ 2004-07-17 19:36 gcc-bugzilla at gcc dot gnu dot org
  2004-07-17 22:38 ` [Bug fortran/16609] " pinskia at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: gcc-bugzilla at gcc dot gnu dot org @ 2004-07-17 19:36 UTC (permalink / raw)
  To: gcc-bugs



kargl[408] gfortran -c z.f90
z.f90: In function `x':
z.f90:9: internal compiler error: in make_decl_rtl, at varasm.c:758

Environment:
System: FreeBSD c-67-168-59-70.client.comcast.net 5.2-CURRENT FreeBSD 5.2-CURRENT #6: Sun Jul 11 10:10:47 PDT 2004 kargl@c-67-168-59-70.client.comcast.net:/usr/obj/usr/src/sys/HOTRATS i386


	
host: i386-unknown-freebsd5.2
build: i386-unknown-freebsd5.2
target: i386-unknown-freebsd5.2
configured with: ../gcc/configure --prefix=/home/kargl/gcc/work --disable-libmudflap --enable-languages=c,f95 : (reconfigured) ../gcc/configure --prefix=/home/kargl/gcc/work --disable-libmudflap --with-gcc-version-trigger=/home/kargl/gcc/gcc/gcc/version.c --enable-languages=c,f95 --no-create --no-recursion

How-To-Repeat:

Try to compile

   MODULE Z
     DOUBLE PRECISION, PRIVATE, PARAMETER :: RBX = 1.D0
     DOUBLE PRECISION, ALLOCATABLE, PRIVATE:: DD1(:)
     CONTAINS
       SUBROUTINE X
         ALLOCATE (DD1(2))
         DO I = 1, 2
           DD1(I) = INT(RBX)
         END DO
       END SUBROUTINE X
   END MODULE Z

with gfortran.

-- 
           Summary: ICE: in make_decl_rtl, at varasm.c:758
           Product: gcc
           Version: 3.5.0
            Status: UNCONFIRMED
          Severity: critical
          Priority: P2
         Component: other
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: kargl at c-67-168-59-70 dot client dot comcast dot net
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i386-unknown-freebsd5.2
  GCC host triplet: i386-unknown-freebsd5.2
GCC target triplet: i386-unknown-freebsd5.2


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug fortran/16609] ICE: in make_decl_rtl, at varasm.c:758
  2004-07-17 19:36 [Bug other/16609] New: ICE: in make_decl_rtl, at varasm.c:758 gcc-bugzilla at gcc dot gnu dot org
@ 2004-07-17 22:38 ` pinskia at gcc dot gnu dot org
  2004-08-09 16:07 ` [Bug fortran/16609] ICE with "private": " reichelt at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-17 22:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-07-17 22:38 -------
Confirmed, related to PR 15955.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|critical                    |normal
             Status|UNCONFIRMED                 |NEW
          Component|other                       |fortran
     Ever Confirmed|                            |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2004-07-17 22:38:19
               date|                            |


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug fortran/16609] ICE with "private": in make_decl_rtl, at varasm.c:758
  2004-07-17 19:36 [Bug other/16609] New: ICE: in make_decl_rtl, at varasm.c:758 gcc-bugzilla at gcc dot gnu dot org
  2004-07-17 22:38 ` [Bug fortran/16609] " pinskia at gcc dot gnu dot org
@ 2004-08-09 16:07 ` reichelt at gcc dot gnu dot org
  2004-08-09 16:12 ` reichelt at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-08-09 16:07 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-08-09 16:06 -------
Here's an even shorter testcase:

===============================================
module FOO
    integer, private :: I
    contains
        subroutine BAR
            I=1
        end subroutine BAR
end module FOO
===============================================


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |reichelt at gcc dot gnu dot
                   |                            |org
           Keywords|                            |monitored
            Summary|ICE: in make_decl_rtl, at   |ICE with "private": in
                   |varasm.c:758                |make_decl_rtl, at
                   |                            |varasm.c:758


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug fortran/16609] ICE with "private": in make_decl_rtl, at varasm.c:758
  2004-07-17 19:36 [Bug other/16609] New: ICE: in make_decl_rtl, at varasm.c:758 gcc-bugzilla at gcc dot gnu dot org
  2004-07-17 22:38 ` [Bug fortran/16609] " pinskia at gcc dot gnu dot org
  2004-08-09 16:07 ` [Bug fortran/16609] ICE with "private": " reichelt at gcc dot gnu dot org
@ 2004-08-09 16:12 ` reichelt at gcc dot gnu dot org
  2004-08-09 16:16 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-08-09 16:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-08-09 16:12 -------
*** Bug 16944 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |paulthomas2 at wanadoo dot
                   |                            |fr


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug fortran/16609] ICE with "private": in make_decl_rtl, at varasm.c:758
  2004-07-17 19:36 [Bug other/16609] New: ICE: in make_decl_rtl, at varasm.c:758 gcc-bugzilla at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2004-08-09 16:12 ` reichelt at gcc dot gnu dot org
@ 2004-08-09 16:16 ` pinskia at gcc dot gnu dot org
  2004-09-02 10:50 ` tobi at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-08-09 16:16 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-08-09 16:16 -------
*** Bug 15955 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |Mart dot Rentmeester at nn-
                   |                            |online dot org


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug fortran/16609] ICE with "private": in make_decl_rtl, at varasm.c:758
  2004-07-17 19:36 [Bug other/16609] New: ICE: in make_decl_rtl, at varasm.c:758 gcc-bugzilla at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2004-08-09 16:16 ` pinskia at gcc dot gnu dot org
@ 2004-09-02 10:50 ` tobi at gcc dot gnu dot org
  2004-09-15 13:17 ` pbrook at gcc dot gnu dot org
  2004-11-06 15:43 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-09-02 10:50 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2004-09-02 10:50 -------
A patch which fixes this is here:
http://gcc.gnu.org/ml/fortran/2004-09/msg00019.html

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tobi at gcc dot gnu dot org
           Keywords|                            |patch


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug fortran/16609] ICE with "private": in make_decl_rtl, at varasm.c:758
  2004-07-17 19:36 [Bug other/16609] New: ICE: in make_decl_rtl, at varasm.c:758 gcc-bugzilla at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2004-09-02 10:50 ` tobi at gcc dot gnu dot org
@ 2004-09-15 13:17 ` pbrook at gcc dot gnu dot org
  2004-11-06 15:43 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pbrook at gcc dot gnu dot org @ 2004-09-15 13:17 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pbrook at gcc dot gnu dot org  2004-09-15 13:17 -------
Fixed. 

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug fortran/16609] ICE with "private": in make_decl_rtl, at varasm.c:758
  2004-07-17 19:36 [Bug other/16609] New: ICE: in make_decl_rtl, at varasm.c:758 gcc-bugzilla at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2004-09-15 13:17 ` pbrook at gcc dot gnu dot org
@ 2004-11-06 15:43 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-11-06 15:43 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.0.0


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2004-11-06 15:43 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-07-17 19:36 [Bug other/16609] New: ICE: in make_decl_rtl, at varasm.c:758 gcc-bugzilla at gcc dot gnu dot org
2004-07-17 22:38 ` [Bug fortran/16609] " pinskia at gcc dot gnu dot org
2004-08-09 16:07 ` [Bug fortran/16609] ICE with "private": " reichelt at gcc dot gnu dot org
2004-08-09 16:12 ` reichelt at gcc dot gnu dot org
2004-08-09 16:16 ` pinskia at gcc dot gnu dot org
2004-09-02 10:50 ` tobi at gcc dot gnu dot org
2004-09-15 13:17 ` pbrook at gcc dot gnu dot org
2004-11-06 15:43 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).