From: Paul Thomas Date: Wed, 14 Sep 2005 05:12:04 +0000 (+0000) Subject: re PR fortran/19358 ([gfortran] Segfault with missing upper bound) X-Git-Tag: misc/cutover-cvs2svn~627 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0df3cf7f04835666392eb1f8a99d9f4464ad6630;p=thirdparty%2Fgcc.git re PR fortran/19358 ([gfortran] Segfault with missing upper bound) 2005-09-13 Paul Thomas PR fortran/19358 * trans-array.c (gfc_trans_dummy_array_bias): correct the typo which uses dim[i].upper for lbound, rather than dim[i].lower. 2005-09-13 Paul Thomas PR fortran/19358 * gfortran.fortran-torture/assumed_dummy_1.f90: New test. From-SVN: r104259 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 9bde936ebc84..eb93719c29ef 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2005-09-14 Paul Thomas + + PR fortran/19358 + * trans-array.c (gfc_trans_dummy_array_bias): correct the typo + which uses dim[i].upper for lbound, rather than dim[i].lower. + 2005-09-13 Erik Edelmann PR fortran/17740 diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c index a72a19dcdcec..c284dca54657 100644 --- a/gcc/fortran/trans-array.c +++ b/gcc/fortran/trans-array.c @@ -3477,7 +3477,7 @@ gfc_trans_dummy_array_bias (gfc_symbol * sym, tree tmpdesc, tree body) if (!INTEGER_CST_P (lbound)) { gfc_init_se (&se, NULL); - gfc_conv_expr_type (&se, sym->as->upper[n], + gfc_conv_expr_type (&se, sym->as->lower[n], gfc_array_index_type); gfc_add_block_to_block (&block, &se.pre); gfc_add_modify_expr (&block, lbound, se.expr); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index e871629d7a8a..fda2fb3293c9 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-09-13 Paul Thomas + + PR fortran/19358 + * gfortran.fortran-torture/assumed_dummy_1.f90: New test. + 2005-09-13 Josh Conner PR c++/23180 diff --git a/gcc/testsuite/gfortran.dg/assumed_dummy_1.f90 b/gcc/testsuite/gfortran.dg/assumed_dummy_1.f90 new file mode 100644 index 000000000000..a160a884b2a6 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/assumed_dummy_1.f90 @@ -0,0 +1,46 @@ +! { dg do-run} +! Tests the fix for PRs 19358, 19477, 21211 and 21622. +! +! Note that this tests only the valid cases with explicit interfaces. +! +! Contributed by Paul Thomas +! +module global +contains + SUBROUTINE goo (x, i) + REAL, DIMENSION(i:) :: x + integer :: i + x (3) = 99.0 + END SUBROUTINE goo +end module global + +SUBROUTINE foo (x, i) + REAL, DIMENSION(i:) :: x + integer :: i + x (4) = 42.0 +END SUBROUTINE foo + +program test + use global + real, dimension(3) :: y = 0 + integer :: j = 2 + +interface + SUBROUTINE foo (x, i) + REAL, DIMENSION(i:) :: x + integer :: i + END SUBROUTINE foo +end interface + call foo (y, j) + call goo (y, j) + call roo (y, j) + if (any(y.ne.(/21.0, 99.0, 42.0/))) call abort () +contains + SUBROUTINE roo (x, i) + REAL, DIMENSION(i:) :: x + integer :: i + x (2) = 21.0 + END SUBROUTINE roo +end program test + +