2019-08-07 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/91359
* pr91359_2.f: Fix missing hyphen in dg-do
* pr91359_1.f: Ditto. Remove RESULT variable to test actual fix!
From-SVN: r274201
+2019-08-07 Steven G. Kargl <kargl@gcc.gnu.org>
+
+ PR fortran/91359
+ * pr91359_2.f: Fix missing hyphen in dg-do
+ * pr91359_1.f: Ditto. Remove RESULT variable to test actual fix!
+
2019-08-07 Marek Polacek <polacek@redhat.com>
PR c++/67533
-! { dg do run }
+! { dg-do run }
! PR fortran/91359
! Orginal code contributed by Brian T. Carcich <briantcarcich at gmail dot com>
!
- logical function zero() result(a)
+ logical function zero()
goto 2
1 return
-2 a = .false.
- if (.not.a) goto 1
+2 zero = .false.
+ if (.not.zero) goto 1
return
end
-! { dg do run }
+! { dg-do run }
! PR fortran/91359
! Orginal code contributed by Brian T. Carcich <briantcarcich at gmail dot com>
!