public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/13645] New: ICE for data statement in a module
@ 2004-01-11 11:35 schnetter at aei dot mpg dot de
  2004-01-11 16:08 ` [Bug fortran/13645] [gfortran] " pinskia at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: schnetter at aei dot mpg dot de @ 2004-01-11 11:35 UTC (permalink / raw)
  To: gcc-bugs

The code 
 
      module AHFinder_dat 
      implicit none 
      logical ahf_ncall 
      data ahf_ncall / .false. / 
      end module AHFinder_dat 
 
leads to an ICE: 
 
$ ~/gcc-3.5-tree-ssa/bin/gfortran -S bug.f 
bug.f:0: internal compiler error: Segmentation fault 
Please submit a full bug report, 
with preprocessed source if appropriate. 
See <URL:http://gcc.gnu.org/bugs.html> for instructions. 
 
$ ~/gcc-3.5-tree-ssa/bin/gfortran --version 
GNU Fortran 95 (GCC 3.5-tree-ssa 20040110 (merged 20040102)) 
Copyright (C) 2003 Free Software Foundation, Inc. 
 
GNU Fortran comes with NO WARRANTY, to the extent permitted by law. 
You may redistribute copies of GNU Fortran 
under the terms of the GNU General Public License. 
For more information about these matters, see the file named COPYING

-- 
           Summary: ICE for data statement in a module
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: schnetter at aei dot mpg dot de
                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=13645


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

* [Bug fortran/13645] [gfortran] ICE for data statement in a module
  2004-01-11 11:35 [Bug fortran/13645] New: ICE for data statement in a module schnetter at aei dot mpg dot de
@ 2004-01-11 16:08 ` pinskia at gcc dot gnu dot org
  2004-01-12  9:31 ` steven at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-01-11 16:08 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
            Summary|ICE for data statement in a |[gfortran] ICE for data
                   |module                      |statement in a module
   Target Milestone|---                         |tree-ssa


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


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

* [Bug fortran/13645] [gfortran] ICE for data statement in a module
  2004-01-11 11:35 [Bug fortran/13645] New: ICE for data statement in a module schnetter at aei dot mpg dot de
  2004-01-11 16:08 ` [Bug fortran/13645] [gfortran] " pinskia at gcc dot gnu dot org
@ 2004-01-12  9:31 ` steven at gcc dot gnu dot org
  2004-01-25 18:06 ` dhazeghi at yahoo dot com
  2004-01-25 18:19 ` schnetter at aei dot mpg dot de
  3 siblings, 0 replies; 5+ messages in thread
From: steven at gcc dot gnu dot org @ 2004-01-12  9:31 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From steven at gcc dot gnu dot org  2004-01-12 09:31 -------
yup. 

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-01-12 09:31:00
               date|                            |


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


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

* [Bug fortran/13645] [gfortran] ICE for data statement in a module
  2004-01-11 11:35 [Bug fortran/13645] New: ICE for data statement in a module schnetter at aei dot mpg dot de
  2004-01-11 16:08 ` [Bug fortran/13645] [gfortran] " pinskia at gcc dot gnu dot org
  2004-01-12  9:31 ` steven at gcc dot gnu dot org
@ 2004-01-25 18:06 ` dhazeghi at yahoo dot com
  2004-01-25 18:19 ` schnetter at aei dot mpg dot de
  3 siblings, 0 replies; 5+ messages in thread
From: dhazeghi at yahoo dot com @ 2004-01-25 18:06 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dhazeghi at yahoo dot com  2004-01-25 18:06 -------
Works fine for me with current cvs. Can you try a newer snapshot?

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING


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


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

* [Bug fortran/13645] [gfortran] ICE for data statement in a module
  2004-01-11 11:35 [Bug fortran/13645] New: ICE for data statement in a module schnetter at aei dot mpg dot de
                   ` (2 preceding siblings ...)
  2004-01-25 18:06 ` dhazeghi at yahoo dot com
@ 2004-01-25 18:19 ` schnetter at aei dot mpg dot de
  3 siblings, 0 replies; 5+ messages in thread
From: schnetter at aei dot mpg dot de @ 2004-01-25 18:19 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From schnetter at aei dot mpg dot de  2004-01-25 18:19 -------
The bug has been fixed. 
 

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


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


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

end of thread, other threads:[~2004-01-25 18:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-11 11:35 [Bug fortran/13645] New: ICE for data statement in a module schnetter at aei dot mpg dot de
2004-01-11 16:08 ` [Bug fortran/13645] [gfortran] " pinskia at gcc dot gnu dot org
2004-01-12  9:31 ` steven at gcc dot gnu dot org
2004-01-25 18:06 ` dhazeghi at yahoo dot com
2004-01-25 18:19 ` schnetter at aei dot mpg dot de

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).