[Bug fortran/30968] Bogus warning with continued lines of concatenated strings

2007-02-28 Thread burnus at gcc dot gnu dot org
--- Comment #4 from burnus at gcc dot gnu dot org 2007-02-28 08:04 --- Subject: Bug 30968 Author: burnus Date: Wed Feb 28 08:03:47 2007 New Revision: 122401 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=122401 Log: 2007-02-28 Tobias Burnus [EMAIL PROTECTED] PR

[Bug fortran/30968] Bogus warning with continued lines of concatenated strings

2007-02-27 Thread burnus at gcc dot gnu dot org
-- burnus at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |burnus at gcc dot gnu dot |dot org

[Bug fortran/30968] Bogus warning with continued lines of concatenated strings

2007-02-26 Thread burnus at gcc dot gnu dot org
--- Comment #1 from burnus at gcc dot gnu dot org 2007-02-26 17:11 --- Confirmed. One needs the second for: Hello World But one does not need it for: Hello , World The following seems to be a gfortran/ifort extension: Hello World For this case, the warning / std error

[Bug fortran/30968] Bogus warning with continued lines of concatenated strings

2007-02-26 Thread burnus at gcc dot gnu dot org
--- Comment #2 from burnus at gcc dot gnu dot org 2007-02-26 17:39 --- The bug in gfortran is that Hellois correctly seen as non-character context whereas Hello is wrongly regarded as character context. The last line should be: Hello without space between and . Note:

[Bug fortran/30968] Bogus warning with continued lines of concatenated strings

2007-02-26 Thread burnus at gcc dot gnu dot org
--- Comment #3 from burnus at gcc dot gnu dot org 2007-02-26 20:17 --- Patch. Index: gcc/fortran/primary.c === --- gcc/fortran/primary.c (Revision 122328) +++ gcc/fortran/primary.c (Arbeitskopie) @@ -773,7