diff options
Diffstat (limited to 'gcc/fortran/resolve.c')
-rw-r--r-- | gcc/fortran/resolve.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c index b86c430..88acb55 100644 --- a/gcc/fortran/resolve.c +++ b/gcc/fortran/resolve.c @@ -1528,7 +1528,6 @@ resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype, gfc_symtree *parent_st; gfc_expr *e; int save_need_full_assumed_size; - gfc_component *comp; for (; arg; arg = arg->next) { @@ -1548,20 +1547,6 @@ resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype, continue; } - if (gfc_is_proc_ptr_comp (e, &comp)) - { - e->ts = comp->ts; - if (e->expr_type == EXPR_PPC) - { - if (comp->as != NULL) - e->rank = comp->as->rank; - e->expr_type = EXPR_FUNCTION; - } - if (gfc_resolve_expr (e) == FAILURE) - return FAILURE; - goto argument_list; - } - if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.generic && no_formal_args |