diff options
author | Steven G. Kargl <kargl@gcc.gnu.org> | 2015-11-13 00:14:32 +0000 |
---|---|---|
committer | Steven G. Kargl <kargl@gcc.gnu.org> | 2015-11-13 00:14:32 +0000 |
commit | 2050626ae819be7b6409b53b2fc641bcc37949f4 (patch) | |
tree | 266afc73a4ebb97826028912318f59d8755bbc21 /gcc/fortran/decl.c | |
parent | be561c63f445cc8caa2aaa06f254d70a532bff03 (diff) | |
download | gcc-2050626ae819be7b6409b53b2fc641bcc37949f4.zip gcc-2050626ae819be7b6409b53b2fc641bcc37949f4.tar.gz gcc-2050626ae819be7b6409b53b2fc641bcc37949f4.tar.bz2 |
re PR fortran/68318 (ICE on duplicate entry declarations)
2015-11-12 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/68318
* decl.c (get_proc_name): Increment reference count for ENTRY.
While here, fix comment and use postfix ++ for consistency.
2015-11-12 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/68318
* gfortran.dg/pr68318_1.f90: New test.
* gfortran.dg/pr68318_2.f90: Ditto.
From-SVN: r230278
Diffstat (limited to 'gcc/fortran/decl.c')
-rw-r--r-- | gcc/fortran/decl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c index 157eb23..c10557e 100644 --- a/gcc/fortran/decl.c +++ b/gcc/fortran/decl.c @@ -925,6 +925,7 @@ get_proc_name (const char *name, gfc_symbol **result, bool module_fcn_entry) gfc_find_sym_tree (name, gfc_current_ns, 0, &st); st->n.sym = *result; st = gfc_get_unique_symtree (gfc_current_ns); + sym->refs++; st->n.sym = sym; } } @@ -971,7 +972,7 @@ get_proc_name (const char *name, gfc_symbol **result, bool module_fcn_entry) /* Trap another encompassed procedure with the same name. All these conditions are necessary to avoid picking up an entry whose name clashes with that of the encompassing procedure; - this is handled using gsymbols to register unique,globally + this is handled using gsymbols to register unique, globally accessible names. */ if (sym->attr.flavor != 0 && sym->attr.proc != 0 @@ -9051,7 +9052,7 @@ gfc_match_final_decl (void) /* Add this symbol to the list of finalizers. */ gcc_assert (block->f2k_derived); - ++sym->refs; + sym->refs++; f = XCNEW (gfc_finalizer); f->proc_sym = sym; f->proc_tree = NULL; |