public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/15326] [4.0 only] ICE with assumed length character strings
       [not found] <bug-15326-7283@http.gcc.gnu.org/bugzilla/>
@ 2005-11-24  6:06 ` pinskia at gcc dot gnu dot org
  0 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-24  6:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from pinskia at gcc dot gnu dot org  2005-11-24 06:06 -------
*** Bug 25012 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |iguchi at coral dot t dot u-
                   |                            |tokyo dot ac dot jp


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


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

* [Bug fortran/15326] [4.0 only] ICE with assumed length character strings
  2004-05-06 16:48 [Bug fortran/15326] New: [gfortran] " Tobias dot Schlueter at physik dot uni-muenchen dot de
  2005-09-18 19:53 ` [Bug fortran/15326] [4.0 only] " tkoenig at gcc dot gnu dot org
  2005-09-18 20:09 ` rsandifo at gcc dot gnu dot org
@ 2005-09-18 20:27 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-09-18 20:27 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-09-18 20:27 -------
All of these are fixed in 4.1.0. Since 4.0.2 is the last 4.0 release before a 4.1.0 release will be made, 
4.0.2 and 4.0.1 were special releases for gfrotran.  4.0.3 should be a normal release for GCC and 
gfortran in that regressions are the only changes.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|4.0.3                       |4.1.0


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


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

* [Bug fortran/15326] [4.0 only] ICE with assumed length character strings
  2004-05-06 16:48 [Bug fortran/15326] New: [gfortran] " Tobias dot Schlueter at physik dot uni-muenchen dot de
  2005-09-18 19:53 ` [Bug fortran/15326] [4.0 only] " tkoenig at gcc dot gnu dot org
@ 2005-09-18 20:09 ` rsandifo at gcc dot gnu dot org
  2005-09-18 20:27 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: rsandifo at gcc dot gnu dot org @ 2005-09-18 20:09 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|rsandifo at gcc dot gnu dot |unassigned at gcc dot gnu
                   |org                         |dot org
             Status|REOPENED                    |NEW


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


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

* [Bug fortran/15326] [4.0 only] ICE with assumed length character strings
  2004-05-06 16:48 [Bug fortran/15326] New: [gfortran] " Tobias dot Schlueter at physik dot uni-muenchen dot de
@ 2005-09-18 19:53 ` tkoenig at gcc dot gnu dot org
  2005-09-18 20:09 ` rsandifo at gcc dot gnu dot org
  2005-09-18 20:27 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: tkoenig at gcc dot gnu dot org @ 2005-09-18 19:53 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tkoenig at gcc dot gnu dot org  2005-09-18 19:52 -------
Not fixed in 4.0:

$ cat > reduced.f90
  program Decapitation
    implicit none
    integer, parameter :: STRING_LENGTH = 80
    character (len = STRING_LENGTH) :: Text_1, Text_2
    Text_2 = Decap (Text_1)
    stop
  contains
    function Decap (String) result (New_String)
      character (len = *), intent(in) :: String
      character (len = Len(String)) :: New_String
      return
    end function Decap
  end program Decapitation
$ gfortran reduced.f90
reduced.f90: In function 'MAIN__':
reduced.f90:11: internal compiler error: in gfc_conv_function_call, at
fortran/trans-expr.c:1108
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
$ gfortran -v
Using built-in specs.
Target: i686-pc-linux-gnu
Configured with: ../gcc-4.0/configure --prefix=/home/ig25
--enable-languages=c,fortran
Thread model: posix
gcc version 4.0.2 20050917 (prerelease)


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tkoenig at gcc dot gnu dot
                   |                            |org
             Status|RESOLVED                    |REOPENED
      Known to fail|                            |4.0.2
      Known to work|                            |4.1.0
         Resolution|FIXED                       |
            Summary|ICE with assumed length     |[4.0 only] ICE with assumed
                   |character strings           |length character strings
   Target Milestone|---                         |4.0.3


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


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

end of thread, other threads:[~2005-11-24  6:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-15326-7283@http.gcc.gnu.org/bugzilla/>
2005-11-24  6:06 ` [Bug fortran/15326] [4.0 only] ICE with assumed length character strings pinskia at gcc dot gnu dot org
2004-05-06 16:48 [Bug fortran/15326] New: [gfortran] " Tobias dot Schlueter at physik dot uni-muenchen dot de
2005-09-18 19:53 ` [Bug fortran/15326] [4.0 only] " tkoenig at gcc dot gnu dot org
2005-09-18 20:09 ` rsandifo at gcc dot gnu dot org
2005-09-18 20:27 ` 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).