public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/28213]  New: ICE: Hollerith constant
@ 2006-07-01  6:58 s__nakayama at infoseek dot jp
  2006-07-02 16:24 ` [Bug fortran/28213] " pinskia at gcc dot gnu dot org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: s__nakayama at infoseek dot jp @ 2006-07-01  6:58 UTC (permalink / raw)
  To: gcc-bugs

$cat a.f
      program main
      write(*,*) 3horz
      end
$gcc -std=legacy a.f
a.f: In function 'MAIN__':
a.f:2: internal compiler error: Bad IO basetype (9)
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

I don't know if this is really that valid.


-- 
           Summary: ICE: Hollerith constant
           Product: gcc
           Version: 4.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: s__nakayama at infoseek dot jp


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


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

* [Bug fortran/28213] ICE: Hollerith constant
  2006-07-01  6:58 [Bug fortran/28213] New: ICE: Hollerith constant s__nakayama at infoseek dot jp
@ 2006-07-02 16:24 ` pinskia at gcc dot gnu dot org
  2006-07-03  3:16 ` kargl at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-07-02 16:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-07-02 16:24 -------
Confirmed.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-07-02 16:24:07
               date|                            |


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


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

* [Bug fortran/28213] ICE: Hollerith constant
  2006-07-01  6:58 [Bug fortran/28213] New: ICE: Hollerith constant s__nakayama at infoseek dot jp
  2006-07-02 16:24 ` [Bug fortran/28213] " pinskia at gcc dot gnu dot org
@ 2006-07-03  3:16 ` kargl at gcc dot gnu dot org
  2006-07-04  2:41 ` kargl at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: kargl at gcc dot gnu dot org @ 2006-07-03  3:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from kargl at gcc dot gnu dot org  2006-07-03 03:15 -------
I have a patch for this, but I want to see if I can move
it up into the parsing/matching portion of gfortran.


-- 

kargl at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |kargl at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-07-02 16:24:07         |2006-07-03 03:15:54
               date|                            |


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


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

* [Bug fortran/28213] ICE: Hollerith constant
  2006-07-01  6:58 [Bug fortran/28213] New: ICE: Hollerith constant s__nakayama at infoseek dot jp
  2006-07-02 16:24 ` [Bug fortran/28213] " pinskia at gcc dot gnu dot org
  2006-07-03  3:16 ` kargl at gcc dot gnu dot org
@ 2006-07-04  2:41 ` kargl at gcc dot gnu dot org
  2006-07-11  4:09 ` fengwang at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: kargl at gcc dot gnu dot org @ 2006-07-04  2:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from kargl at gcc dot gnu dot org  2006-07-04 02:40 -------
Patch is here

http://gcc.gnu.org/ml/fortran/2006-07/msg00015.html


-- 


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


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

* [Bug fortran/28213] ICE: Hollerith constant
  2006-07-01  6:58 [Bug fortran/28213] New: ICE: Hollerith constant s__nakayama at infoseek dot jp
                   ` (2 preceding siblings ...)
  2006-07-04  2:41 ` kargl at gcc dot gnu dot org
@ 2006-07-11  4:09 ` fengwang at gcc dot gnu dot org
  2006-07-11  4:10 ` fengwang at gcc dot gnu dot org
  2006-07-13  6:34 ` fengwang at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: fengwang at gcc dot gnu dot org @ 2006-07-11  4:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from fengwang at gcc dot gnu dot org  2006-07-11 04:09 -------
Subject: Bug 28213

Author: fengwang
Date: Tue Jul 11 04:09:40 2006
New Revision: 115326

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115326
Log:
2006-07-11  Feng Wang  <fengwang@nudt.edu.cn>

        PR fortran/28213
        * gfortran.dg/hollerith4.f90: Test hollerith constants used in I/O
        list.

2006-07-11  Feng Wang  <fengwang@nudt.edu.cn>

        PR fortran/28213
        * trans-io.c (ransfer_expr): Deal with Hollerith constants used in
        I/O list.


Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-io.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gfortran.dg/hollerith4.f90


-- 


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


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

* [Bug fortran/28213] ICE: Hollerith constant
  2006-07-01  6:58 [Bug fortran/28213] New: ICE: Hollerith constant s__nakayama at infoseek dot jp
                   ` (3 preceding siblings ...)
  2006-07-11  4:09 ` fengwang at gcc dot gnu dot org
@ 2006-07-11  4:10 ` fengwang at gcc dot gnu dot org
  2006-07-13  6:34 ` fengwang at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: fengwang at gcc dot gnu dot org @ 2006-07-11  4:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from fengwang at gcc dot gnu dot org  2006-07-11 04:10 -------
Subject: Bug 28213

Author: fengwang
Date: Tue Jul 11 04:10:31 2006
New Revision: 115327

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115327
Log:
2006-07-11  Feng Wang  <fengwang@nudt.edu.cn>

        PR fortran/28213
        * gfortran.dg/hollerith4.f90: Test hollerith constants used in I/O
        list.

2006-07-11  Feng Wang  <fengwang@nudt.edu.cn>

        PR fortran/28213
        * trans-io.c (ransfer_expr): Deal with Hollerith constants used in
        I/O list.


Modified:
    branches/gcc-4_1-branch/gcc/fortran/ChangeLog
    branches/gcc-4_1-branch/gcc/fortran/trans-io.c
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/hollerith4.f90


-- 


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


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

* [Bug fortran/28213] ICE: Hollerith constant
  2006-07-01  6:58 [Bug fortran/28213] New: ICE: Hollerith constant s__nakayama at infoseek dot jp
                   ` (4 preceding siblings ...)
  2006-07-11  4:10 ` fengwang at gcc dot gnu dot org
@ 2006-07-13  6:34 ` fengwang at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: fengwang at gcc dot gnu dot org @ 2006-07-13  6:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from fengwang at gcc dot gnu dot org  2006-07-13 06:34 -------
Fixed on trunk and 4.1


-- 

fengwang at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2006-07-13  6:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-07-01  6:58 [Bug fortran/28213] New: ICE: Hollerith constant s__nakayama at infoseek dot jp
2006-07-02 16:24 ` [Bug fortran/28213] " pinskia at gcc dot gnu dot org
2006-07-03  3:16 ` kargl at gcc dot gnu dot org
2006-07-04  2:41 ` kargl at gcc dot gnu dot org
2006-07-11  4:09 ` fengwang at gcc dot gnu dot org
2006-07-11  4:10 ` fengwang at gcc dot gnu dot org
2006-07-13  6:34 ` fengwang 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).