+2018-03-25 Thomas Koenig <tkoenig@gcc.gnu.org>
+ Neil Carlson <neil.n.carlson@gmail.com>
+
+ PR fortran/84381
+ * gfortran.dg/literal_character_constant_1.inc: Replace
+ call abort by STOP n.
+ * gfortran.dg/overload_1.f90: Likewise.
+
2018-03-25 Seth Johnson <johnsonsr@ornl.gov>
Dominique d'Humieres <dominiq@gcc.gnu.org>
r2 = (/ a.eq.b, a.ne.b, a.lt.b, a.le.b, a.gt.b, a.ge.b /)
if (any (r1.neqv.r2)) STOP 1
if (any (r1.neqv. &
- (/ .false.,.true.,.true., .true., .false.,.false. /) )) call&
- & abort
+ (/ .false.,.true.,.true., .true., .false.,.false. /) )) STOP 1
end subroutine checkt
subroutine checku
r2 = (/ a.eq.b, a.ne.b, a.lt.b, a.le.b, a.gt.b, a.ge.b /)
if (any (r1.neqv.r2)) STOP 2
if (any (r1.neqv. &
- (/ .false.,.true.,.true., .true., .false.,.false. /) )) call&
- & abort
+ (/ .false.,.true.,.true., .true., .false.,.false. /) )) STOP 2
end subroutine checku
end program main