public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libfortran/21303] "Positive width required in format string"
       [not found] <bug-21303-6528@http.gcc.gnu.org/bugzilla/>
@ 2005-11-28  9:33 ` fxcoudert at gcc dot gnu dot org
  2006-02-03 20:30 ` fxcoudert at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-11-28  9:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from fxcoudert at gcc dot gnu dot org  2005-11-28 09:33 -------
Well, at least that one should be easy (L without a width specifier is an
extension, and the width is then taken to be 1). I'm on it.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |fxcoudert at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
          Component|fortran                     |libfortran
   Last reconfirmed|2005-09-18 06:09:23         |2005-11-28 09:33:27
               date|                            |


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


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

* [Bug libfortran/21303] "Positive width required in format string"
       [not found] <bug-21303-6528@http.gcc.gnu.org/bugzilla/>
  2005-11-28  9:33 ` [Bug libfortran/21303] "Positive width required in format string" fxcoudert at gcc dot gnu dot org
@ 2006-02-03 20:30 ` fxcoudert at gcc dot gnu dot org
  2006-02-06  1:04 ` fxcoudert at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2006-02-03 20:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from fxcoudert at gcc dot gnu dot org  2006-02-03 20:30 -------
Unfortunately, I don't have time to work on this, so I let it go. Sorry.


-- 

fxcoudert at gcc dot gnu dot org changed:

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


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


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

* [Bug libfortran/21303] "Positive width required in format string"
       [not found] <bug-21303-6528@http.gcc.gnu.org/bugzilla/>
  2005-11-28  9:33 ` [Bug libfortran/21303] "Positive width required in format string" fxcoudert at gcc dot gnu dot org
  2006-02-03 20:30 ` fxcoudert at gcc dot gnu dot org
@ 2006-02-06  1:04 ` fxcoudert at gcc dot gnu dot org
  2006-02-19 21:31 ` fxcoudert at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2006-02-06  1:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from fxcoudert at gcc dot gnu dot org  2006-02-06 01:04 -------
Well, I finally found the time :)
Patch URL added.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |fxcoudert at gcc dot gnu dot
                   |dot org                     |org
                URL|                            |http://gcc.gnu.org/ml/fortra
                   |                            |n/2006-02/msg00094.html
             Status|NEW                         |ASSIGNED
           Keywords|                            |patch
   Last reconfirmed|2005-11-28 09:33:27         |2006-02-06 01:04:08
               date|                            |


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


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

* [Bug libfortran/21303] "Positive width required in format string"
       [not found] <bug-21303-6528@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2006-02-06  1:04 ` fxcoudert at gcc dot gnu dot org
@ 2006-02-19 21:31 ` fxcoudert at gcc dot gnu dot org
  2006-02-19 21:33 ` [Bug libfortran/21303] [4.1 only] L edit descriptor without a width fxcoudert at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 7+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2006-02-19 21:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from fxcoudert at gcc dot gnu dot org  2006-02-19 21:31 -------
Subject: Bug 21303

Author: fxcoudert
Date: Sun Feb 19 21:31:02 2006
New Revision: 111281

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111281
Log:
        PR libfortran/21303

        * gfortran.h (notification): New enumeration.
        (gfc_notification_std): Prototype for the new function.
        * error.c (gfc_notification_std): New function.
        * io.c (check_format): Handle the case of a L format descriptor
        without a width.

        * runtime/error.c (notification_std): New function.
        * libgfortran.h (notification): New enumeration.
        * io/io.h (notification_std): Prototype for the new function. 
        * io/format.c (parse_format_list): Handle the case of a L format
        descriptor without a width.

        * gcc/testsuite/gfortran.dg/fmt_l.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/fmt_l.f90
Modified:
    trunk/gcc/fortran/error.c
    trunk/gcc/fortran/gfortran.h
    trunk/gcc/fortran/io.c
    trunk/libgfortran/io/format.c
    trunk/libgfortran/io/io.h
    trunk/libgfortran/libgfortran.h
    trunk/libgfortran/runtime/error.c


-- 


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


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

* [Bug libfortran/21303] [4.1 only] L edit descriptor without a width
       [not found] <bug-21303-6528@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2006-02-19 21:31 ` fxcoudert at gcc dot gnu dot org
@ 2006-02-19 21:33 ` fxcoudert at gcc dot gnu dot org
  2006-03-04 13:28 ` fxcoudert at gcc dot gnu dot org
  2006-03-04 13:29 ` [Bug libfortran/21303] " fxcoudert at gcc dot gnu dot org
  6 siblings, 0 replies; 7+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2006-02-19 21:33 UTC (permalink / raw)
  To: gcc-bugs



-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|"Positive width required in |[4.1 only] L edit descriptor
                   |format string"              |without a width
   Target Milestone|---                         |4.1.1


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


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

* [Bug libfortran/21303] [4.1 only] L edit descriptor without a width
       [not found] <bug-21303-6528@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2006-02-19 21:33 ` [Bug libfortran/21303] [4.1 only] L edit descriptor without a width fxcoudert at gcc dot gnu dot org
@ 2006-03-04 13:28 ` fxcoudert at gcc dot gnu dot org
  2006-03-04 13:29 ` [Bug libfortran/21303] " fxcoudert at gcc dot gnu dot org
  6 siblings, 0 replies; 7+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2006-03-04 13:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from fxcoudert at gcc dot gnu dot org  2006-03-04 13:28 -------
Subject: Bug 21303

Author: fxcoudert
Date: Sat Mar  4 13:28:38 2006
New Revision: 111710

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=111710
Log:
        PR libfortran/21303

        * gfortran.h (notification): New enumeration.
        (gfc_notification_std): Prototype for the new function.
        * error.c (gfc_notification_std): New function.
        * io.c (check_format): Handle the case of a L format descriptor
        without a width.

        * runtime/error.c (notification_std): New function.
        * libgfortran.h (notification): New enumeration.
        * io/io.h (notification_std): Prototype for the new function. 
        * io/format.c (parse_format_list): Handle the case of a L format
        descriptor without a width.

        * gcc/testsuite/gfortran.dg/fmt_l.f90: New test.

Added:
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/fmt_l.f90
      - copied unchanged from r111281,
trunk/gcc/testsuite/gfortran.dg/fmt_l.f90
Modified:
    branches/gcc-4_1-branch/gcc/fortran/ChangeLog
    branches/gcc-4_1-branch/gcc/fortran/error.c
    branches/gcc-4_1-branch/gcc/fortran/gfortran.h
    branches/gcc-4_1-branch/gcc/fortran/io.c
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog
    branches/gcc-4_1-branch/libgfortran/ChangeLog
    branches/gcc-4_1-branch/libgfortran/io/format.c
    branches/gcc-4_1-branch/libgfortran/io/io.h
    branches/gcc-4_1-branch/libgfortran/libgfortran.h
    branches/gcc-4_1-branch/libgfortran/runtime/error.c


-- 


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


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

* [Bug libfortran/21303] L edit descriptor without a width
       [not found] <bug-21303-6528@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2006-03-04 13:28 ` fxcoudert at gcc dot gnu dot org
@ 2006-03-04 13:29 ` fxcoudert at gcc dot gnu dot org
  6 siblings, 0 replies; 7+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2006-03-04 13:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from fxcoudert at gcc dot gnu dot org  2006-03-04 13:29 -------
Fix commited to 4.1


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
      Known to work|                            |4.1.1 4.2.0
         Resolution|                            |FIXED
            Summary|[4.1 only] L edit descriptor|L edit descriptor without a
                   |without a width             |width


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


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

end of thread, other threads:[~2006-03-04 13:29 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-21303-6528@http.gcc.gnu.org/bugzilla/>
2005-11-28  9:33 ` [Bug libfortran/21303] "Positive width required in format string" fxcoudert at gcc dot gnu dot org
2006-02-03 20:30 ` fxcoudert at gcc dot gnu dot org
2006-02-06  1:04 ` fxcoudert at gcc dot gnu dot org
2006-02-19 21:31 ` fxcoudert at gcc dot gnu dot org
2006-02-19 21:33 ` [Bug libfortran/21303] [4.1 only] L edit descriptor without a width fxcoudert at gcc dot gnu dot org
2006-03-04 13:28 ` fxcoudert at gcc dot gnu dot org
2006-03-04 13:29 ` [Bug libfortran/21303] " fxcoudert 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).