From aa84a9a5e414aad8acbbdf4efae1f951bc9a1de7 Mon Sep 17 00:00:00 2001 From: Paul Thomas Date: Sat, 4 Aug 2007 20:46:11 +0000 Subject: re PR fortran/31214 (User-defined operator using entry leads to ICE) 2007-08-04 Paul Thomas PR fortran/31214 * symbol.c (get_unique_symtree): Moved from module.c. * module.c (get_unique_symtree): Moved to symbol.c. * decl.c (get_proc_name): Transfer the typespec from the local symbol to the module symbol, in the case that an entry is also a module procedure. Ensure the local symbol is cleaned up by pointing to it with a unique symtree. * dump_parse_tree (gfc_show_code_node): Add EXEC_ASSIGN_CALL. 2007-08-04 Paul Thomas PR fortran/31214 * gfortran.dg/entry_13.f90: New test. * gfortran.dg/entry_12.f90: Clean up .mod file. From-SVN: r127213 --- gcc/fortran/dump-parse-tree.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/fortran/dump-parse-tree.c') diff --git a/gcc/fortran/dump-parse-tree.c b/gcc/fortran/dump-parse-tree.c index c99fc42..ac6a6f5 100644 --- a/gcc/fortran/dump-parse-tree.c +++ b/gcc/fortran/dump-parse-tree.c @@ -1084,6 +1084,7 @@ gfc_show_code_node (int level, gfc_code *c) break; case EXEC_CALL: + case EXEC_ASSIGN_CALL: if (c->resolved_sym) gfc_status ("CALL %s ", c->resolved_sym->name); else if (c->symtree) -- cgit v1.1