summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/proc_decl_12.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/proc_decl_12.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/proc_decl_12.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/proc_decl_12.f90 b/gcc/testsuite/gfortran.dg/proc_decl_12.f90
index 37fc4a4e420..f6c3f99ab9e 100644
--- a/gcc/testsuite/gfortran.dg/proc_decl_12.f90
+++ b/gcc/testsuite/gfortran.dg/proc_decl_12.f90
@@ -9,7 +9,7 @@ module m
contains
subroutine one(a)
integer a(1:3)
- if (any(a /= [1,2,3])) call abort()
+ if (any(a /= [1,2,3])) STOP 1
end subroutine one
end module m