re PR fortran/84389 (Defined output: unexpected compiler error with the use of "...
authorJerry DeLisle <jvdelisle@gcc.gnu.org>
Sun, 18 Feb 2018 19:19:47 +0000 (19:19 +0000)
committerJerry DeLisle <jvdelisle@gcc.gnu.org>
Sun, 18 Feb 2018 19:19:47 +0000 (19:19 +0000)
2018-02-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

PR fortran/84389
* io.c (check_format): Allow FMT_COLON.

* gfortran.dg/dtio_33.f90: New test.

From-SVN: r257795

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

index 8ecc90a..01f9c5e 100644 (file)
@@ -1,3 +1,8 @@
+2018-02-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR fortran/84389
+       * io.c (check_format): Allow FMT_COLON.
+
 2018-02-18  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/80945
index 9b7c2de..d9f0fb1 100644 (file)
@@ -985,6 +985,9 @@ data_desc:
        case FMT_COMMA:
          goto format_item;
 
+       case FMT_COLON:
+         goto format_item_1;
+
        case FMT_LPAREN:
 
   dtio_vlist:
index 274bd74..5064357 100644 (file)
@@ -1,5 +1,10 @@
 2018-02-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
 
+       PR libgfortran/84389
+       * gfortran.dg/dtio_33.f90: New test.
+
+2018-02-18  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
        PR libgfortran/84412
        * gfortran.dg/inquire_18.f90: New test.
 
diff --git a/gcc/testsuite/gfortran.dg/dtio_33.f90 b/gcc/testsuite/gfortran.dg/dtio_33.f90
new file mode 100644 (file)
index 0000000..2deca43
--- /dev/null
@@ -0,0 +1,28 @@
+! { dg-do run }
+! PR84389 rejected valid use of ':' in format
+module m
+   type :: t
+   integer :: i
+   contains
+      procedure, pass(this) :: write_t
+      generic, public :: write(formatted) => write_t
+   end type
+contains
+   subroutine write_t(this, lun, iotype, vlist, istat, imsg)
+      ! argument definitions
+      class(t), intent(in)            :: this
+      integer, intent(in)             :: lun
+      character(len=*), intent(in)    :: iotype
+      integer, intent(in)             :: vlist(:)
+      integer, intent(out)            :: istat
+      character(len=*), intent(inout) :: imsg
+      write(lun, fmt=*, iostat=istat, iomsg=imsg) "Hello World!"
+   end subroutine write_t
+end module
+program p
+   use m, only : t
+   character(50) :: str
+   type(t) :: foo(2)
+   write(str, "(*(dt:,','))") foo
+   if (str.ne." Hello World!, Hello World!") stop 1
+end program