re PR fortran/91650 (ICE in gfc_conv_constant_to_tree, at fortran/trans-const.c:370)
authorSteven G. Kargl <kargl@gcc.gnu.org>
Wed, 4 Sep 2019 23:21:12 +0000 (23:21 +0000)
committerSteven G. Kargl <kargl@gcc.gnu.org>
Wed, 4 Sep 2019 23:21:12 +0000 (23:21 +0000)
2019-09-04  Steven G. Kargl  <kargl@gcvc.gnu.org>

PR fortran/91650
* io.c (match_io_element):  An output IO list item cannot be a BOZ.

2019-09-04  Steven G. Kargl  <kargl@gcvc.gnu.org>

PR fortran/91650
* gfortran.dg/pr91650_1.f90: New test.
* gfortran.dg/pr91650_2.f90: Ditto.

From-SVN: r275391

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

index b866cdf3b9852ff8bf6b7250ef0a446b85440112..4da49108c9de60ed57fbcb307d8967e885479c8d 100644 (file)
@@ -1,3 +1,8 @@
+2019-09-04  Steven G. Kargl  <kargl@gcvc.gnu.org>
+
+       PR fortran/91650
+       * io.c (match_io_element):  An output IO list item cannot be a BOZ.
+
 2019-09-03  Steven G. Kargl  <kargl@gcc.gnu.org>
 
        * gfortran.texi: Update documentation to catch up with BOZ changes.
index 632e168809d6773b5b5a1308da584d3fcb0bd8a2..d57b7471da21d5a0e2a1061e817075d77be493dd 100644 (file)
@@ -3675,6 +3675,15 @@ match_io_element (io_kind k, gfc_code **cpp)
       if (m == MATCH_NO)
        gfc_error ("Expected expression in %s statement at %C",
                   io_kind_name (k));
+
+      if (m == MATCH_YES && expr->ts.type == BT_BOZ)
+       {
+         if (gfc_invalid_boz ("BOZ literal constant at %L cannot appear in "
+                               "an output IO list", &gfc_current_locus))
+           return MATCH_ERROR;
+         if (!gfc_boz2int (expr, gfc_max_integer_kind))
+           return MATCH_ERROR;
+       };
     }
 
   if (m == MATCH_YES && k == M_READ && gfc_check_do_variable (expr->symtree))
index ecde4ca1c93617bf27f49688f9834d4b7fc82363..11d6fab7044f8422ac3b4f28a64a557e47faa2e5 100644 (file)
@@ -1,3 +1,9 @@
+2019-09-04  Steven G. Kargl  <kargl@gcvc.gnu.org>
+
+       PR fortran/91650
+       * gfortran.dg/pr91650_1.f90: New test.
+       * gfortran.dg/pr91650_2.f90: Ditto.
+
 2019-09-04  Marek Polacek  <polacek@redhat.com>
 
        * g++.dg/cpp0x/initlist-deduce.C: Don't use -fdeduce-init-list.  Remove
diff --git a/gcc/testsuite/gfortran.dg/pr91650_1.f90 b/gcc/testsuite/gfortran.dg/pr91650_1.f90
new file mode 100644 (file)
index 0000000..1cda096
--- /dev/null
@@ -0,0 +1,8 @@
+! { dg-do compile }
+! PR fortran/91650
+! Code contributed by Gerhard Steinmetz.
+program p
+   print *, b'10110' ! { dg-error "cannot appear in an output IO list" }
+   print *, o'10110' ! { dg-error "cannot appear in an output IO list" }
+   print *, z'10110' ! { dg-error "cannot appear in an output IO list" }
+end
diff --git a/gcc/testsuite/gfortran.dg/pr91650_2.f90 b/gcc/testsuite/gfortran.dg/pr91650_2.f90
new file mode 100644 (file)
index 0000000..28316ec
--- /dev/null
@@ -0,0 +1,13 @@
+! { dg-do compile }
+! { dg-options "-fallow-invalid-boz" }
+! PR fortran/91650
+! Code contributed by Gerhard Steinmetz.
+program p
+   character(len=60) str
+   write(str,*) b'10110' ! { dg-warning "cannot appear in an output IO list" }
+   if (trim(adjustl(str)) /= '22') stop 1
+   write(str,*) o'10110' ! { dg-warning "cannot appear in an output IO list" }
+   if (trim(adjustl(str)) /= '4168') stop 2
+   write(str,*) z'10110' ! { dg-warning "cannot appear in an output IO list" }
+   if (trim(adjustl(str)) /= '65808') stop 3
+end