summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/ieee/large_2.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/ieee/large_2.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/ieee/large_2.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/ieee/large_2.f90 b/gcc/testsuite/gfortran.dg/ieee/large_2.f90
index 54e33971054..0ec429a006f 100644
--- a/gcc/testsuite/gfortran.dg/ieee/large_2.f90
+++ b/gcc/testsuite/gfortran.dg/ieee/large_2.f90
@@ -114,7 +114,7 @@ contains
real(kind=k1), intent(in) :: x, y
if (x /= y) then
print *, x, y
- call abort
+ STOP 1
end if
end subroutine
@@ -122,7 +122,7 @@ contains
real(kind=k2), intent(in) :: x, y
if (x /= y) then
print *, x, y
- call abort
+ STOP 2
end if
end subroutine
@@ -130,7 +130,7 @@ contains
real(kind=k1), intent(in) :: x, y
if (x == y) then
print *, x, y
- call abort
+ STOP 3
end if
end subroutine
@@ -138,7 +138,7 @@ contains
real(kind=k2), intent(in) :: x, y
if (x == y) then
print *, x, y
- call abort
+ STOP 4
end if
end subroutine