re PR fortran/33269 (Diagnose missing "(" in "PRINT ('a'),")
authorTobias Schlüter <tobi@gcc.gnu.org>
Mon, 24 Sep 2007 21:15:00 +0000 (23:15 +0200)
committerTobias Schlüter <tobi@gcc.gnu.org>
Mon, 24 Sep 2007 21:15:00 +0000 (23:15 +0200)
PR fortran/33269
fortran/
* io.c (check_format_string): Move NULL and constant checks into
this function.
(check_io_constraints): Call gfc_simplify_expr() before calling
check_format_string().  Remove NULL and constant checks.
testsuite/
* gfortran.dg/fmt_error_2.f90: New.

From-SVN: r128732

gcc/fortran/ChangeLog
gcc/fortran/io.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/fmt_error_2.f90 [new file with mode: 0644]

index 00f2cb9176c16a386e716c2aac949ba147e0543a..fcf15997eb4d008d0c58837d3d79e52a2bbcbb9d 100644 (file)
@@ -1,3 +1,11 @@
+2007-09-23  Tobias Schlüter  <tobi@gcc.gnu.org>
+
+       PR fortran/33269
+       * io.c (check_format_string): Move NULL and constant checks into
+       this function.
+       (check_io_constraints): Call gfc_simplify_expr() before calling
+       check_format_string().  Remove NULL and constant checks.
+
 2007-09-24  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
 
        PR fortran/33538
index 901af922b953dcdb9e99450bc031a5189445a16c..0e2a0cb7df2c0fe912243dc67407a869ee5e44a4 100644 (file)
@@ -919,6 +919,9 @@ finished:
 static try
 check_format_string (gfc_expr *e, bool is_input)
 {
+  if (!e || e->expr_type != EXPR_CONSTANT)
+    return SUCCESS;
+
   mode = MODE_STRING;
   format_string = e->value.character.string;
   return check_format (is_input);
@@ -2786,8 +2789,8 @@ if (condition) \
     }
 
   expr = dt->format_expr;
-  if (expr != NULL && expr->expr_type == EXPR_CONSTANT
-      && check_format_string (expr, k == M_READ) == FAILURE)
+  if (gfc_simplify_expr (expr, 0) == FAILURE
+      || check_format_string (expr, k == M_READ) == FAILURE)
     return MATCH_ERROR;
 
   return m;
index 9dfab26018f6c204b1df9a15f9c5b972cb4a3f20..f4da1ddf0a249ddd955259d13ff63f1c947c2672 100644 (file)
@@ -1,3 +1,11 @@
+2007-09-23  Tobias Schlüter  <tobi@gcc.gnu.org>
+
+       PR fortran/33269
+       * io.c (check_format_string): Move NULL and constant checks into
+       this function.
+       (check_io_constraints): Call gfc_simplify_expr() before calling
+       check_format_string().  Remove NULL and constant checks.
+
 2007-09-24  Roman Zippel <zippel@linux-m68k.org>
 
        * gcc.c-torture/execute/loop-2f.x: New. Disable test for m68k-linux.
diff --git a/gcc/testsuite/gfortran.dg/fmt_error_2.f90 b/gcc/testsuite/gfortran.dg/fmt_error_2.f90
new file mode 100644 (file)
index 0000000..8fdaf9e
--- /dev/null
@@ -0,0 +1,35 @@
+! { dg-do compile }
+! PR 33269: we used to not simplify format strings before checking if
+! they were valid, leading to a missed error.
+
+IMPLICIT CHARACTER*5 (h-z)
+
+CHARACTER*5 f
+CHARACTER*5 bad, good
+parameter(bad="a", good="(a)")
+
+PRINT ('a'), "hello" ! { dg-error "Missing leading left parenthesis in format string" }
+WRITE (*, ("a")) "error"  ! { dg-error "Missing leading left parenthesis in format string" }
+
+PRINT 'a', "hello" ! { dg-error "Missing leading left parenthesis in format string" }
+WRITE (*, "a") "error"  ! { dg-error "Missing leading left parenthesis in format string" }
+WRITE (*, bad) "error"  ! { dg-error "Missing leading left parenthesis in format string" }
+
+PRINT 'a' // ', a', "err", "or"   ! { dg-error "Missing leading left parenthesis in format string" }
+
+PRINT '(' // 'a'  ! { dg-error "Unexpected end of format string in format string" }
+
+! the following are ok
+PRINT "(2f5.3)", bar, foo
+PRINT ' (a)', "hello"
+WRITE (*, " ((a))") "hello"
+print "(a" // ")", "all is fine"
+print good, "great"
+
+! verify that we haven't broken non-constant expressions
+f = "(f5.3)"
+print f, 3.14159
+print (f), 2.71813
+print implicitly_typed, "something"
+write (*, implicitly_typed_as_well) "something else"
+END