diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/realloc_on_assign_18.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/realloc_on_assign_18.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/realloc_on_assign_18.f90 b/gcc/testsuite/gfortran.dg/realloc_on_assign_18.f90 index 7dcd22e11b0..fe2faf22e76 100644 --- a/gcc/testsuite/gfortran.dg/realloc_on_assign_18.f90 +++ b/gcc/testsuite/gfortran.dg/realloc_on_assign_18.f90 @@ -11,8 +11,8 @@ type(t), allocatable :: x, y(:) x = t() y = [ t :: ] -if (.not. allocated (x)) call abort () -if (.not. allocated (y)) call abort () +if (.not. allocated (x)) STOP 1 +if (.not. allocated (y)) STOP 2 end ! { dg-final { scan-tree-dump "x = \\(struct t .\\) __builtin_malloc \\(1\\);" "original" } } |