http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47240
--- Comment #10 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2011-01-12 20:59:31 UTC --- > sorry, I can not reproduce this at r168655 (plus patch from comment #7), at > least not on x86_64-unknown-linux-gnu. Do you only get this error with the > patch, or also with a clean trunk? I would expect that my patch should not > have > any impact on your test case ... I am rebuilding a clean tree with only the following patch diff -up ../_clean/gcc/fortran/resolve.c gcc/fortran/resolve.c --- ../_clean/gcc/fortran/resolve.c 2011-01-09 22:13:56.000000000 +0100 +++ gcc/fortran/resolve.c 2011-01-12 21:49:39.000000000 +0100 @@ -4858,6 +4858,9 @@ expression_rank (gfc_expr *e) for (ref = e->ref; ref; ref = ref->next) { + if (ref->type == REF_COMPONENT && !ref->next) + rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0; + if (ref->type != REF_ARRAY) continue; diff -up ../_clean/gcc/fortran/trans-expr.c gcc/fortran/trans-expr.c --- ../_clean/gcc/fortran/trans-expr.c 2011-01-08 20:18:07.000000000 +0100 +++ gcc/fortran/trans-expr.c 2011-01-12 21:49:39.000000000 +0100 @@ -3044,7 +3044,8 @@ gfc_conv_procedure_call (gfc_se * se, gf || (fsym->attr.proc_pointer && !(e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)) - || (e->expr_type == EXPR_VARIABLE + || (fsym->attr.proc_pointer + && e->expr_type == EXPR_VARIABLE && gfc_is_proc_ptr_comp (e, NULL)) || fsym->attr.allocatable)) { (your patch for trans-expr.c does not apply cleanly with a copy&past from safari, so I hope I got it right).