public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/14067] no warning when character data statement overflows declared size
       [not found] <bug-14067-5725@http.gcc.gnu.org/bugzilla/>
@ 2006-06-02 20:15 ` patchapp at dberlin dot org
  2006-06-05  7:45 ` pault at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: patchapp at dberlin dot org @ 2006-06-02 20:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from patchapp at dberlin dot org  2006-06-02 20:15 -------
Subject: Bug number PR14067

A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2006-06/msg00093.html


-- 


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


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

* [Bug fortran/14067] no warning when character data statement overflows declared size
       [not found] <bug-14067-5725@http.gcc.gnu.org/bugzilla/>
  2006-06-02 20:15 ` [Bug fortran/14067] no warning when character data statement overflows declared size patchapp at dberlin dot org
@ 2006-06-05  7:45 ` pault at gcc dot gnu dot org
  2006-06-05 10:15 ` pault at gcc dot gnu dot org
  2006-06-05 10:22 ` pault at gcc dot gnu dot org
  3 siblings, 0 replies; 6+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-06-05  7:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from pault at gcc dot gnu dot org  2006-06-05 07:45 -------
Subject: Bug 14067

Author: pault
Date: Mon Jun  5 07:45:03 2006
New Revision: 114385

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114385
Log:
2006-06-05  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/14067
        * data.c (create_character_intializer): Add warning message
        for truncated string.

        PR fortran/16943
        * symbol.c : Include flags.h.
        (gfc_add_type): If a procedure and types are the same do not
        throw an error unless standard is less than gnu or pedantic.

        PR fortran/20838
        * parse.c (parse_do_block): Error if named block do construct
        does not have a named enddo.

        PR fortran/27655
        * check.c (gfc_check_associated): Pick up EXPR_NULL for pointer
        as well as target and put error return at end of function.

2006-06-05  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/14067
        * gfortran.dg/data_char_1.f90: Add messages for truncated
        strings.

        PR fortran/16943
        * gfortran.dg/func_decl_2.f90: New test.

        PR fortran/20838
        * gfortran.dg/do_2.f90: New test.

        PR fortran/27655
        * gfortran.dg/associated_3.f90: New test.


Added:
    trunk/gcc/testsuite/gfortran.dg/associated_3.f90
    trunk/gcc/testsuite/gfortran.dg/do_2.f90
    trunk/gcc/testsuite/gfortran.dg/func_decl_2.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/check.c
    trunk/gcc/fortran/data.c
    trunk/gcc/fortran/parse.c
    trunk/gcc/fortran/symbol.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gfortran.dg/data_char_1.f90


-- 


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


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

* [Bug fortran/14067] no warning when character data statement overflows declared size
       [not found] <bug-14067-5725@http.gcc.gnu.org/bugzilla/>
  2006-06-02 20:15 ` [Bug fortran/14067] no warning when character data statement overflows declared size patchapp at dberlin dot org
  2006-06-05  7:45 ` pault at gcc dot gnu dot org
@ 2006-06-05 10:15 ` pault at gcc dot gnu dot org
  2006-06-05 10:22 ` pault at gcc dot gnu dot org
  3 siblings, 0 replies; 6+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-06-05 10:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from pault at gcc dot gnu dot org  2006-06-05 10:14 -------
Subject: Bug 14067

Author: pault
Date: Mon Jun  5 10:14:32 2006
New Revision: 114387

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114387
Log:
2006-06-05  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/14067
        * data.c (create_character_intializer): Add warning message
        for truncated string.

        PR fortran/16943
        * symbol.c : Include flags.h.
        (gfc_add_type): If a procedure and types are the same do not
        throw an error unless standard is less than gnu or pedantic.

        PR fortran/20838
        * parse.c (parse_do_block): Error if named block do construct
        does not have a named enddo.

        PR fortran/27655
        * check.c (gfc_check_associated): Pick up EXPR_NULL for pointer
        as well as target and put error return at end of function.

2006-06-05  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/14067
        * gfortran.dg/data_char_1.f90: Add messages for truncated
        strings.

        PR fortran/16943
        * gfortran.dg/func_decl_2.f90: New test.

        PR fortran/20838
        * gfortran.dg/do_2.f90: New test.

        PR fortran/27655
        * gfortran.dg/associated_3.f90: New test.


Added:
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/associated_3.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/do_2.f90
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/func_decl_2.f90
Modified:
    branches/gcc-4_1-branch/gcc/fortran/ChangeLog
    branches/gcc-4_1-branch/gcc/fortran/check.c
    branches/gcc-4_1-branch/gcc/fortran/data.c
    branches/gcc-4_1-branch/gcc/fortran/parse.c
    branches/gcc-4_1-branch/gcc/fortran/symbol.c
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog
    branches/gcc-4_1-branch/gcc/testsuite/gfortran.dg/data_char_1.f90


-- 


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


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

* [Bug fortran/14067] no warning when character data statement overflows declared size
       [not found] <bug-14067-5725@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2006-06-05 10:15 ` pault at gcc dot gnu dot org
@ 2006-06-05 10:22 ` pault at gcc dot gnu dot org
  3 siblings, 0 replies; 6+ messages in thread
From: pault at gcc dot gnu dot org @ 2006-06-05 10:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from pault at gcc dot gnu dot org  2006-06-05 10:22 -------
Fixed on trunk and 4.1

Paul


-- 

pault at gcc dot gnu dot org changed:

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


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


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

* [Bug fortran/14067] no warning when character data statement overflows declared size
  2004-02-07 20:51 [Bug fortran/14067] New: [gfortran] ICE " bdavis9659 at comcast dot net
  2005-01-06 14:40 ` [Bug fortran/14067] no warning " tobi at gcc dot gnu dot org
@ 2005-03-26 17:48 ` pinskia at gcc dot gnu dot org
  1 sibling, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-03-26 17:48 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
   Last reconfirmed|2004-12-15 04:44:48         |2005-03-26 17:48:40
               date|                            |


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


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

* [Bug fortran/14067] no warning when character data statement overflows declared size
  2004-02-07 20:51 [Bug fortran/14067] New: [gfortran] ICE " bdavis9659 at comcast dot net
@ 2005-01-06 14:40 ` tobi at gcc dot gnu dot org
  2005-03-26 17:48 ` pinskia at gcc dot gnu dot org
  1 sibling, 0 replies; 6+ messages in thread
From: tobi at gcc dot gnu dot org @ 2005-01-06 14:40 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |19292
              nThis|                            |


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


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

end of thread, other threads:[~2006-06-05 10:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-14067-5725@http.gcc.gnu.org/bugzilla/>
2006-06-02 20:15 ` [Bug fortran/14067] no warning when character data statement overflows declared size patchapp at dberlin dot org
2006-06-05  7:45 ` pault at gcc dot gnu dot org
2006-06-05 10:15 ` pault at gcc dot gnu dot org
2006-06-05 10:22 ` pault at gcc dot gnu dot org
2004-02-07 20:51 [Bug fortran/14067] New: [gfortran] ICE " bdavis9659 at comcast dot net
2005-01-06 14:40 ` [Bug fortran/14067] no warning " tobi at gcc dot gnu dot org
2005-03-26 17:48 ` 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).