------- Comment #1 from dfranke at gcc dot gnu dot org 2007-07-31 14:42 ------- Regtesting:
Index: expr.c =================================================================== --- expr.c (revision 127062) +++ expr.c (working copy) @@ -693,6 +693,10 @@ static match check_specification_function (gfc_expr *e) { gfc_symbol *sym; + + if (!e->symtree) + return MATCH_NO; + sym = e->symtree->n.sym; /* F95, 7.1.6.2; F2003, 7.1.7 */ -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32945