summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/f2c_6.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/f2c_6.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/f2c_6.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/f2c_6.f90 b/gcc/testsuite/gfortran.dg/f2c_6.f90
index d28724cfa56..63cb61a1df2 100644
--- a/gcc/testsuite/gfortran.dg/f2c_6.f90
+++ b/gcc/testsuite/gfortran.dg/f2c_6.f90
@@ -65,20 +65,20 @@ complex, pointer :: p
z = (1.,0.)
p => c()
z = (2.,0.)
-if (p /= z) call abort ()
+if (p /= z) STOP 1
NULLIFY(p)
p => d()
z = (3.,0.)
-if (p /= z) call abort ()
+if (p /= z) STOP 2
NULLIFY(p)
p => e()
z = (4.,0.)
-if (p /= z) call abort ()
+if (p /= z) STOP 3
NULLIFY(p)
p => f()
z = (5.,0.)
-if (p /= z) call abort ()
+if (p /= z) STOP 4
end