public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/19271] New: ICE on a = transpose(a) for character array
@ 2005-01-05 16:57 Thomas dot Koenig at online dot de
  2005-01-05 18:31 ` [Bug fortran/19271] " pinskia at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Thomas dot Koenig at online dot de @ 2005-01-05 16:57 UTC (permalink / raw)
  To: gcc-bugs

This may be related to PR 19017.

$ cat reshape-char.f90
program main
  character(len=1), dimension(2,2) :: a,b
  a = reshape((/'a', 'b', 'c', 'd'/), shape(a))
  b = transpose(a)           ! This works
  a = transpose(a)           ! This bombs
  print *,a
end program main
$ gfortran reshape-char.f90
reshape-char.f90: In function 'MAIN__':
reshape-char.f90:4: internal compiler error: in gfc_trans_scalar_assign, at
fortran/trans-expr.c:2006
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.
Configured with: ../gcc-4.0-20050102/configure --prefix=/home/zfkts
--enable-languages=c,c++,f95
Thread model: posix
gcc version 4.0.0 20050102 (experimental)
$ gfortran -dumpmachine
ia64-unknown-linux-gnu

-- 
           Summary: ICE on a = transpose(a) for character array
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Thomas dot Koenig at online dot de
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug fortran/19271] ICE on a = transpose(a) for character array
  2005-01-05 16:57 [Bug fortran/19271] New: ICE on a = transpose(a) for character array Thomas dot Koenig at online dot de
@ 2005-01-05 18:31 ` pinskia at gcc dot gnu dot org
  2005-01-05 19:03 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-05 18:31 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-05 18:31 -------
Confirmed, closely related to PR 15502 and bug 19017

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
  BugsThisDependsOn|                            |15502, 19017
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2005-01-05 18:31:16
               date|                            |
            Summary|ICE on a = transpose(a) for |ICE on a = transpose(a) for
                   |character array             |character array


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


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

* [Bug fortran/19271] ICE on a = transpose(a) for character array
  2005-01-05 16:57 [Bug fortran/19271] New: ICE on a = transpose(a) for character array Thomas dot Koenig at online dot de
  2005-01-05 18:31 ` [Bug fortran/19271] " pinskia at gcc dot gnu dot org
@ 2005-01-05 19:03 ` pinskia at gcc dot gnu dot org
  2005-06-05 22:49 ` pault at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-05 19:03 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-05 19:03 -------
Strick off 15502.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
  BugsThisDependsOn|15502                       |


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


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

* [Bug fortran/19271] ICE on a = transpose(a) for character array
  2005-01-05 16:57 [Bug fortran/19271] New: ICE on a = transpose(a) for character array Thomas dot Koenig at online dot de
  2005-01-05 18:31 ` [Bug fortran/19271] " pinskia at gcc dot gnu dot org
  2005-01-05 19:03 ` pinskia at gcc dot gnu dot org
@ 2005-06-05 22:49 ` pault at gcc dot gnu dot org
  2005-06-06  0:31 ` pinskia at gcc dot gnu dot org
  2005-06-11 23:28 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pault at gcc dot gnu dot org @ 2005-06-05 22:49 UTC (permalink / raw)
  To: gcc-bugs



-- 
Bug 19271 depends on bug 19017, which changed state.

Bug 19017 Summary: ICE in gfc_trans_scalar_assign
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19017

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

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


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

* [Bug fortran/19271] ICE on a = transpose(a) for character array
  2005-01-05 16:57 [Bug fortran/19271] New: ICE on a = transpose(a) for character array Thomas dot Koenig at online dot de
                   ` (2 preceding siblings ...)
  2005-06-05 22:49 ` pault at gcc dot gnu dot org
@ 2005-06-06  0:31 ` pinskia at gcc dot gnu dot org
  2005-06-11 23:28 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-06  0:31 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-06 00:31 -------
Fixed in 4.0.1.

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


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


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

* [Bug fortran/19271] ICE on a = transpose(a) for character array
  2005-01-05 16:57 [Bug fortran/19271] New: ICE on a = transpose(a) for character array Thomas dot Koenig at online dot de
                   ` (3 preceding siblings ...)
  2005-06-06  0:31 ` pinskia at gcc dot gnu dot org
@ 2005-06-11 23:28 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-11 23:28 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-11 23:28 -------
*** Bug 22027 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |c dot lemmen at fz-juelich
                   |                            |dot de


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


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

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

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-05 16:57 [Bug fortran/19271] New: ICE on a = transpose(a) for character array Thomas dot Koenig at online dot de
2005-01-05 18:31 ` [Bug fortran/19271] " pinskia at gcc dot gnu dot org
2005-01-05 19:03 ` pinskia at gcc dot gnu dot org
2005-06-05 22:49 ` pault at gcc dot gnu dot org
2005-06-06  0:31 ` pinskia at gcc dot gnu dot org
2005-06-11 23:28 ` 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).