OSDN Git Service

2007-05-27 Jerry DeLisle <jvdelisle@gcc.gnu.org>
authorjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 27 May 2007 22:42:54 +0000 (22:42 +0000)
committerjvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 27 May 2007 22:42:54 +0000 (22:42 +0000)
PR fortran/31812
* parse.c (next_statement): Warn for truncated lines if source is free
form.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125119 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/fortran/ChangeLog
gcc/fortran/parse.c

index 11b6e92..59278dc 100644 (file)
@@ -1,3 +1,9 @@
+2007-05-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR fortran/31812
+       * parse.c (next_statement): Warn for truncated lines if source is free
+       form.
+
 2007-05-27 Paul Thomas  <pault@gcc.gnu.org>
           Tobias Burnus  <burnus@net-b.de>
 
index 9e47ea4..46604cf 100644 (file)
@@ -653,7 +653,7 @@ next_statement (void)
 
       if (gfc_at_eol ())
        {
-         if (gfc_option.warn_line_truncation
+         if ((gfc_option.warn_line_truncation || gfc_current_form == FORM_FREE)
              && gfc_current_locus.lb
              && gfc_current_locus.lb->truncated)
            gfc_warning_now ("Line truncated at %C");