http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46841
janus at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED AssignedTo|unassigned at gcc dot |janus at gcc dot gnu.org |gnu.org | --- Comment #4 from janus at gcc dot gnu.org 2010-12-13 14:30:41 UTC --- Here's the fix: Index: gcc/fortran/trans-expr.c =================================================================== --- gcc/fortran/trans-expr.c (revision 167730) +++ gcc/fortran/trans-expr.c (working copy) @@ -4452,7 +4452,7 @@ gfc_class_null_initializer (&cm->ts)); gfc_add_expr_to_block (&block, tmp); } - else if (cm->attr.dimension) + else if (cm->attr.dimension && !cm->attr.proc_pointer) { if (cm->attr.allocatable && expr->expr_type == EXPR_NULL) gfc_conv_descriptor_data_set (&block, dest, null_pointer_node); Will commit as obvious after regtesting.