public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION
@ 2003-12-01  2:44 dann at godzilla dot ics dot uci dot edu
  2003-12-01  2:47 ` [Bug fortran/13253] " pinskia at gcc dot gnu dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: dann at godzilla dot ics dot uci dot edu @ 2003-12-01  2:44 UTC (permalink / raw)
  To: gcc-bugs

With: gcc version 3.5-tree-ssa 20031130 (merged 20031123)

test.f90:

MODULE mymod
  TYPE :: MYTYPE
     CHARACTER(12),  DIMENSION(3) :: FIELD
  END TYPE MYTYPE
  TYPE (MYTYPE) :: MYVALUE
END MODULE mymod

SUBROUTINE MYSUB (MYARG)
  USE mymod;
END SUBROUTINE MYSUB


gfortran -c test.f90       
test.f90:0: internal compiler error: in gfc_get_dtype_cst, at
fortran/trans-types.c:585
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

If "DIMENSION(3)" is deleted,the code compiles fine.

Intel's compiler compiles the above code.

Code like this appears in SPEC2000

-- 
           Summary: [gfortran] ICE when using DIMENSION
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: dann at godzilla dot ics dot uci dot edu
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


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


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

* [Bug fortran/13253] [gfortran] ICE when using DIMENSION
  2003-12-01  2:44 [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION dann at godzilla dot ics dot uci dot edu
@ 2003-12-01  2:47 ` pinskia at gcc dot gnu dot org
  2003-12-01 20:57 ` pbrook at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-12-01  2:47 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
   Target Milestone|---                         |tree-ssa


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


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

* [Bug fortran/13253] [gfortran] ICE when using DIMENSION
  2003-12-01  2:44 [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION dann at godzilla dot ics dot uci dot edu
  2003-12-01  2:47 ` [Bug fortran/13253] " pinskia at gcc dot gnu dot org
@ 2003-12-01 20:57 ` pbrook at gcc dot gnu dot org
  2004-01-05 19:00 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pbrook at gcc dot gnu dot org @ 2003-12-01 20:57 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pbrook at gcc dot gnu dot org  2003-12-01 20:57 -------
Arrays of character variables are not yet implemented. 

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Priority|P2                          |P3
   Last reconfirmed|0000-00-00 00:00:00         |2003-12-01 20:57:24
               date|                            |


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


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

* [Bug fortran/13253] [gfortran] ICE when using DIMENSION
  2003-12-01  2:44 [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION dann at godzilla dot ics dot uci dot edu
  2003-12-01  2:47 ` [Bug fortran/13253] " pinskia at gcc dot gnu dot org
  2003-12-01 20:57 ` pbrook at gcc dot gnu dot org
@ 2004-01-05 19:00 ` pinskia at gcc dot gnu dot org
  2004-01-05 19:00 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-05 19:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-01-05 19:00 -------
*** Bug 13569 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tow21 at cam dot ac dot uk


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


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

* [Bug fortran/13253] [gfortran] ICE when using DIMENSION
  2003-12-01  2:44 [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION dann at godzilla dot ics dot uci dot edu
                   ` (2 preceding siblings ...)
  2004-01-05 19:00 ` pinskia at gcc dot gnu dot org
@ 2004-01-05 19:00 ` pinskia at gcc dot gnu dot org
  2004-01-20 15:47 ` [Bug fortran/13253] [gfortran] ICE when using DIMENSION and CHARACTER pbrook at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-05 19:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-01-05 19:00 -------
*** Bug 13280 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |steven at gcc dot gnu dot
                   |                            |org


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


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

* [Bug fortran/13253] [gfortran] ICE when using DIMENSION and CHARACTER
  2003-12-01  2:44 [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION dann at godzilla dot ics dot uci dot edu
                   ` (3 preceding siblings ...)
  2004-01-05 19:00 ` pinskia at gcc dot gnu dot org
@ 2004-01-20 15:47 ` pbrook at gcc dot gnu dot org
  2004-01-22  6:57 ` lei at il dot ibm dot com
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pbrook at gcc dot gnu dot org @ 2004-01-20 15:47 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pbrook at gcc dot gnu dot org  2004-01-20 15:47 -------
*** Bug 12842 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jv244 at cam dot ac dot uk


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


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

* [Bug fortran/13253] [gfortran] ICE when using DIMENSION and CHARACTER
  2003-12-01  2:44 [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION dann at godzilla dot ics dot uci dot edu
                   ` (4 preceding siblings ...)
  2004-01-20 15:47 ` [Bug fortran/13253] [gfortran] ICE when using DIMENSION and CHARACTER pbrook at gcc dot gnu dot org
@ 2004-01-22  6:57 ` lei at il dot ibm dot com
  2004-02-27 17:57 ` pbrook at gcc dot gnu dot org
  2004-04-04 23:33 ` pbrook at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: lei at il dot ibm dot com @ 2004-01-22  6:57 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From lei at il dot ibm dot com  2004-01-22 06:57 -------
(In reply to comment #4)
> *** Bug 12842 has been marked as a duplicate of this bug. ***
13253 is marked as "low priority enhancement" now.  Let me
disagree -- since it prevents compiling 2 out of 4 SPEC2000
FP programs its priority should be no lower than that of the
other bugs.


-- 


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


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

* [Bug fortran/13253] [gfortran] ICE when using DIMENSION and CHARACTER
  2003-12-01  2:44 [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION dann at godzilla dot ics dot uci dot edu
                   ` (5 preceding siblings ...)
  2004-01-22  6:57 ` lei at il dot ibm dot com
@ 2004-02-27 17:57 ` pbrook at gcc dot gnu dot org
  2004-04-04 23:33 ` pbrook at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: pbrook at gcc dot gnu dot org @ 2004-02-27 17:57 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |pbrook at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED


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


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

* [Bug fortran/13253] [gfortran] ICE when using DIMENSION and CHARACTER
  2003-12-01  2:44 [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION dann at godzilla dot ics dot uci dot edu
                   ` (6 preceding siblings ...)
  2004-02-27 17:57 ` pbrook at gcc dot gnu dot org
@ 2004-04-04 23:33 ` pbrook at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: pbrook at gcc dot gnu dot org @ 2004-04-04 23:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pbrook at gcc dot gnu dot org  2004-04-04 23:33 -------
Fixed. 

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


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


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

end of thread, other threads:[~2004-04-04 23:33 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-01  2:44 [Bug fortran/13253] New: [gfortran] ICE when using DIMENSION dann at godzilla dot ics dot uci dot edu
2003-12-01  2:47 ` [Bug fortran/13253] " pinskia at gcc dot gnu dot org
2003-12-01 20:57 ` pbrook at gcc dot gnu dot org
2004-01-05 19:00 ` pinskia at gcc dot gnu dot org
2004-01-05 19:00 ` pinskia at gcc dot gnu dot org
2004-01-20 15:47 ` [Bug fortran/13253] [gfortran] ICE when using DIMENSION and CHARACTER pbrook at gcc dot gnu dot org
2004-01-22  6:57 ` lei at il dot ibm dot com
2004-02-27 17:57 ` pbrook at gcc dot gnu dot org
2004-04-04 23:33 ` pbrook 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).