summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/c_sizeof_5.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/c_sizeof_5.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/c_sizeof_5.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/c_sizeof_5.f90 b/gcc/testsuite/gfortran.dg/c_sizeof_5.f90
index 127a24ab6a4..1fd319c0d6d 100644
--- a/gcc/testsuite/gfortran.dg/c_sizeof_5.f90
+++ b/gcc/testsuite/gfortran.dg/c_sizeof_5.f90
@@ -7,6 +7,6 @@ real pointee(10)
pointer (ipt, pointee)
integer(c_intptr_t) :: int_cptr
real :: x
-if (c_sizeof(ipt) /= c_sizeof(int_cptr)) call abort()
-if (c_sizeof(pointee) /= c_sizeof(x)*10) call abort()
+if (c_sizeof(ipt) /= c_sizeof(int_cptr)) STOP 1
+if (c_sizeof(pointee) /= c_sizeof(x)*10) STOP 2
end