diff options
author | Paul Thomas <pault@gcc.gnu.org> | 2005-11-10 22:24:28 +0000 |
---|---|---|
committer | Paul Thomas <pault@gcc.gnu.org> | 2005-11-10 22:24:28 +0000 |
commit | 9081e356a1fbf0133fd25ccfa21fe2e4ee710b20 (patch) | |
tree | f8af7b25e393d0bdcc9c501354353285b3dd30cc /gcc | |
parent | c040ffff7577b6798465f6c025de2b1f77cec1e9 (diff) | |
download | gcc-9081e356a1fbf0133fd25ccfa21fe2e4ee710b20.zip gcc-9081e356a1fbf0133fd25ccfa21fe2e4ee710b20.tar.gz gcc-9081e356a1fbf0133fd25ccfa21fe2e4ee710b20.tar.bz2 |
re PR fortran/24655 (ICE with statement function)
2005-11-10 Paul Thomas <pault@gcc.gnu.org>
PR fortran/24655
PR fortran/24755
* match.c (recursive_stmt_fcn): Add checks that symtree exists
for the expression to weed out inline intrinsic functions and
parameters.
PR fortran/24409
* module.c (mio_symtree_ref): Correct the patch of 0923 so that
a symbol is not substituted for by a the symbol for the module
itself and to prevent the promotion of a formal argument.
2005-11-10 Paul Thomas <pault@gcc.gnu.org>
PR fortran/24655
PR fortran/24755
* gfortran.dg/recursive_statement_functions.f90: Add statement
functions using inline intrinsic functions and parameters to test
that they no longer seg-fault.
PR fortran/24409
gfortran.dg/nested_modules_4.f90: New test.
gfortran.dg/nested_modules_5.f90: New test.
From-SVN: r106756
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 13 | ||||
-rw-r--r-- | gcc/fortran/match.c | 5 | ||||
-rw-r--r-- | gcc/fortran/module.c | 14 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 12 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/nested_modules_4.f90 | 25 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/nested_modules_5.f90 | 26 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/recursive_statement_functions.f90 | 28 |
7 files changed, 113 insertions, 10 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index fbedea2..a138bb1 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,16 @@ +2005-11-10 Paul Thomas <pault@gcc.gnu.org> + + PR fortran/24655 + PR fortran/24755 + * match.c (recursive_stmt_fcn): Add checks that symtree exists + for the expression to weed out inline intrinsic functions and + parameters. + + PR fortran/24409 + * module.c (mio_symtree_ref): Correct the patch of 0923 so that + a symbol is not substituted for by a the symbol for the module + itself and to prevent the promotion of a formal argument. + 2005-11-10 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de> PR fortran/24643 diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c index 8725a5f0..97e8f5a 100644 --- a/gcc/fortran/match.c +++ b/gcc/fortran/match.c @@ -2723,6 +2723,9 @@ recursive_stmt_fcn (gfc_expr *e, gfc_symbol *sym) return true; } + if (e->symtree == NULL) + return false; + /* Check the name before testing for nested recursion! */ if (sym->name == e->symtree->n.sym->name) return true; @@ -2736,7 +2739,7 @@ recursive_stmt_fcn (gfc_expr *e, gfc_symbol *sym) break; case EXPR_VARIABLE: - if (sym->name == e->symtree->n.sym->name) + if (e->symtree && sym->name == e->symtree->n.sym->name) return true; break; diff --git a/gcc/fortran/module.c b/gcc/fortran/module.c index 763905b..6f978aa 100644 --- a/gcc/fortran/module.c +++ b/gcc/fortran/module.c @@ -2113,9 +2113,17 @@ mio_symtree_ref (gfc_symtree ** stp) namespace to see if the required, non-contained symbol is available yet. If so, the latter should be written. */ if ((*stp)->n.sym && check_unique_name((*stp)->name)) - ns_st = gfc_find_symtree (gfc_current_ns->sym_root, (*stp)->n.sym->name); - - mio_symbol_ref (ns_st ? &ns_st->n.sym : &(*stp)->n.sym); + ns_st = gfc_find_symtree (gfc_current_ns->sym_root, + (*stp)->n.sym->name); + + /* On the other hand, if the existing symbol is the module name or the + new symbol is a dummy argument, do not do the promotion. */ + if (ns_st && ns_st->n.sym + && ns_st->n.sym->attr.flavor != FL_MODULE + && !(*stp)->n.sym->attr.dummy) + mio_symbol_ref (&ns_st->n.sym); + else + mio_symbol_ref (&(*stp)->n.sym); } else { diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ec545ea..ac89480 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,15 @@ +2005-11-10 Paul Thomas <pault@gcc.gnu.org> + + PR fortran/24655 + PR fortran/24755 + * gfortran.dg/recursive_statement_functions.f90: Add statement + functions using inline intrinsic functions and parameters to test + that they no longer seg-fault. + + PR fortran/24409 + gfortran.dg/nested_modules_4.f90: New test. + gfortran.dg/nested_modules_5.f90: New test. + 2005-11-10 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de> PR fortran/24643 diff --git a/gcc/testsuite/gfortran.dg/nested_modules_4.f90 b/gcc/testsuite/gfortran.dg/nested_modules_4.f90 new file mode 100644 index 0000000..b9e0fd3 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/nested_modules_4.f90 @@ -0,0 +1,25 @@ +! { dg-do compile } +! +! Test for the fix to PR24409 - the name clash between the module +! name and the interface formal argument would cause an ICE. +! +! Contributed by Paul Thomas <pault@gcc.gnu.org> +! +module string + interface + function lc(string ) + character(len=*), intent(in) :: string + character(len=len(string )) :: lc + end function lc + end interface +end module string + +module serial + use string +end module serial + + use serial + use string + character*15 :: buffer + buffer = lc ("Have a Nice DAY") + end diff --git a/gcc/testsuite/gfortran.dg/nested_modules_5.f90 b/gcc/testsuite/gfortran.dg/nested_modules_5.f90 new file mode 100644 index 0000000..7f96bdb --- /dev/null +++ b/gcc/testsuite/gfortran.dg/nested_modules_5.f90 @@ -0,0 +1,26 @@ +! { dg-do compile } +! +! Test for supplementary fix to PR24409 - the name clash between the module +! variable and the interface formal argument would cause an ICE. +! +! Contributed by Paul Thomas <pault@gcc.gnu.org> +! +module anything + interface + function lc(string ) + character(len=*), intent(in) :: string + character(len=len(string )) :: lc + end function lc + end interface + character(len=12) :: string +end module anything + +module serial + use anything +end module serial + + use serial + use anything + character*15 :: buffer + buffer = lc ("Have a Nice DAY") + end diff --git a/gcc/testsuite/gfortran.dg/recursive_statement_functions.f90 b/gcc/testsuite/gfortran.dg/recursive_statement_functions.f90 index 489f118..cc3caae 100644 --- a/gcc/testsuite/gfortran.dg/recursive_statement_functions.f90 +++ b/gcc/testsuite/gfortran.dg/recursive_statement_functions.f90 @@ -1,16 +1,32 @@ ! { dg-do compile } ! PR20866 - A statement function cannot be recursive. ! Contributed by Joost VandeVondele <jv244@cam.ac.uk> - INTEGER :: i, st1, st2, st3 +! +! Modified 20051110 to check that regressions PR24655 and PR24755 +! are fixed. Thanks to pavarini@pv.infn.it and tdeutsch@cea.fr for +! the tests. +! + INTEGER :: i, st1, st2, st3, lambda, n REAL :: x, z(2,2) - character*8 :: ch + character(8) :: ch + real(8) :: fi, arg, sigma, dshpfunc + real(8), parameter :: one=1d0 ! ! Test check for recursion via other statement functions, string ! length references, function actual arguments and array index ! references. - st1(i)=len(ch(st2(1):8)) - st2(i)=max (st3(1), 4) - st3(i)=2 + cos (z(st1 (1), i)) ! { dg-error "is recursive" } - write(6,*) st1(1) +! + st1 (i) = len (ch(st2 (1):8)) + st2 (i) = max (st3 (1), 4) + st3 (i) = 2 + cos (z(st1 (1), i)) ! { dg-error "is recursive" } +! +! Test the two regressions. +! + fi (n) = n *one + dshpfunc (arg)=-lambda/sigma*(arg/sigma)**(lambda-1)*exp(-(arg/sigma)**lambda) +! +! References to each statement function. +! + write(6,*) st1 (1), fi (2), dshpfunc (1.0_8) END |