public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/15190] New: [gfortran] incorrect matching of print statement
@ 2004-04-28 13:35 Tobias dot Schlueter at physik dot uni-muenchen dot de
  2004-04-28 14:27 ` [Bug fortran/15190] " pinskia at gcc dot gnu dot org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Tobias dot Schlueter at physik dot uni-muenchen dot de @ 2004-04-28 13:35 UTC (permalink / raw)
  To: gcc-bugs

The following free-form code compiles without error:
INTEGER f
PRINTf, 2
END 

The parser should enforce a space between print and f.

-- 
           Summary: [gfortran] incorrect matching of print statement
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Tobias dot Schlueter at physik dot uni-muenchen dot de
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug fortran/15190] [gfortran] incorrect matching of print statement
  2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
@ 2004-04-28 14:27 ` pinskia at gcc dot gnu dot org
  2004-04-30 16:35 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-04-28 14:27 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-04-28 12:56 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |accepts-invalid
   Last reconfirmed|0000-00-00 00:00:00         |2004-04-28 12:56:48
               date|                            |
   Target Milestone|---                         |tree-ssa


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


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

* [Bug fortran/15190] [gfortran] incorrect matching of print statement
  2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
  2004-04-28 14:27 ` [Bug fortran/15190] " pinskia at gcc dot gnu dot org
@ 2004-04-30 16:35 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
  2004-05-16 21:42 ` [Bug fortran/15190] [gfortran] incorrect matching tobi at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Tobias dot Schlueter at physik dot uni-muenchen dot de @ 2004-04-30 16:35 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From Tobias dot Schlueter at physik dot uni-muenchen dot de  2004-04-30 16:18 -------
I have a patch for this. Waiting for my copyright assignment.

-- 


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


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

* [Bug fortran/15190] [gfortran] incorrect matching
  2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
  2004-04-28 14:27 ` [Bug fortran/15190] " pinskia at gcc dot gnu dot org
  2004-04-30 16:35 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
@ 2004-05-16 21:42 ` tobi at gcc dot gnu dot org
  2004-05-27  3:25 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-05-16 21:42 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2004-05-15 20:39 -------
The matchers schould enforce non-identifier symbols (i.e. not letters or digits)
after these keywords:
BLOCK DATA, ENTRY, MODULE PROCEDURE, PRINT, STOP and TYPE
and in type declarations, i.e. after REAL, INTEGER etc.

I don't like the patch I have for this, so I'm taking these more detailed notes.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |tobi at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED
            Summary|[gfortran] incorrect        |[gfortran] incorrect
                   |matching of print statement |matching


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


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

* [Bug fortran/15190] [gfortran] incorrect matching
  2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
                   ` (2 preceding siblings ...)
  2004-05-16 21:42 ` [Bug fortran/15190] [gfortran] incorrect matching tobi at gcc dot gnu dot org
@ 2004-05-27  3:25 ` pinskia at gcc dot gnu dot org
  2004-06-25 13:13 ` [Bug fortran/15190] incorrect matching after keywords tobi at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-05-27  3:25 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.5.0                       |---


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


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

* [Bug fortran/15190] incorrect matching after keywords
  2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
                   ` (3 preceding siblings ...)
  2004-05-27  3:25 ` pinskia at gcc dot gnu dot org
@ 2004-06-25 13:13 ` tobi at gcc dot gnu dot org
  2004-06-25 13:35 ` tobi at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-06-25 13:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2004-06-25 13:12 -------
USE also ...

-- 


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


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

* [Bug fortran/15190] incorrect matching after keywords
  2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
                   ` (4 preceding siblings ...)
  2004-06-25 13:13 ` [Bug fortran/15190] incorrect matching after keywords tobi at gcc dot gnu dot org
@ 2004-06-25 13:35 ` tobi at gcc dot gnu dot org
  2004-06-26 11:50 ` tobi at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-06-25 13:35 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2004-06-25 13:30 -------
Patch here: http://gcc.gnu.org/ml/fortran/2004-06/msg00247.html

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch


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


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

* [Bug fortran/15190] incorrect matching after keywords
  2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
                   ` (5 preceding siblings ...)
  2004-06-25 13:35 ` tobi at gcc dot gnu dot org
@ 2004-06-26 11:50 ` tobi at gcc dot gnu dot org
  2004-06-26 12:15 ` cvs-commit at gcc dot gnu dot org
  2004-07-10  0:36 ` pinskia at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: tobi at gcc dot gnu dot org @ 2004-06-26 11:50 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tobi at gcc dot gnu dot org  2004-06-26 11:50 -------
Fixed.

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


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


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

* [Bug fortran/15190] incorrect matching after keywords
  2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
                   ` (6 preceding siblings ...)
  2004-06-26 11:50 ` tobi at gcc dot gnu dot org
@ 2004-06-26 12:15 ` cvs-commit at gcc dot gnu dot org
  2004-07-10  0:36 ` pinskia at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-06-26 12:15 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-06-26 11:49 -------
Subject: Bug 15190

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	tobi@gcc.gnu.org	2004-06-26 11:48:56

Modified files:
	gcc/fortran    : ChangeLog decl.c io.c parse.c 

Log message:
	2004-06-25  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
	Andrew Vaught <andyv@firstinter.net>
	
	PR fortran/15190
	* decl.c (gfc_match_type_spec), io.c (match_io), parse.c
	(decode_statement): Enforce required space in free-form.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/ChangeLog.diff?cvsroot=gcc&r1=1.83&r2=1.84
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/decl.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/io.c.diff?cvsroot=gcc&r1=1.9&r2=1.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fortran/parse.c.diff?cvsroot=gcc&r1=1.7&r2=1.8



-- 


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


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

* [Bug fortran/15190] incorrect matching after keywords
  2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
                   ` (7 preceding siblings ...)
  2004-06-26 12:15 ` cvs-commit at gcc dot gnu dot org
@ 2004-07-10  0:36 ` pinskia at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-10  0:36 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |3.5.0


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


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

end of thread, other threads:[~2004-07-10  0:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-04-28 13:35 [Bug fortran/15190] New: [gfortran] incorrect matching of print statement Tobias dot Schlueter at physik dot uni-muenchen dot de
2004-04-28 14:27 ` [Bug fortran/15190] " pinskia at gcc dot gnu dot org
2004-04-30 16:35 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
2004-05-16 21:42 ` [Bug fortran/15190] [gfortran] incorrect matching tobi at gcc dot gnu dot org
2004-05-27  3:25 ` pinskia at gcc dot gnu dot org
2004-06-25 13:13 ` [Bug fortran/15190] incorrect matching after keywords tobi at gcc dot gnu dot org
2004-06-25 13:35 ` tobi at gcc dot gnu dot org
2004-06-26 11:50 ` tobi at gcc dot gnu dot org
2004-06-26 12:15 ` cvs-commit at gcc dot gnu dot org
2004-07-10  0:36 ` 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).