summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/lrshift_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/lrshift_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/lrshift_1.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/lrshift_1.f90 b/gcc/testsuite/gfortran.dg/lrshift_1.f90
index 7feed2962ea..b0e53794943 100644
--- a/gcc/testsuite/gfortran.dg/lrshift_1.f90
+++ b/gcc/testsuite/gfortran.dg/lrshift_1.f90
@@ -11,8 +11,8 @@ program test_rshift_lshift
do n = 1, size(i)
do j = -30, 30
- if (lshift(i(n),j) /= c_lshift(i(n),j)) call abort
- if (rshift(i(n),j) /= c_rshift(i(n),j)) call abort
+ if (lshift(i(n),j) /= c_lshift(i(n),j)) STOP 1
+ if (rshift(i(n),j) /= c_rshift(i(n),j)) STOP 2
end do
end do
end program test_rshift_lshift