Commit 0511ddbb by Steven G. Kargl

dump-parse-tree.c (show_code_node): Add ERRMSG to the dumping of allocate and…

dump-parse-tree.c (show_code_node): Add ERRMSG to the dumping of allocate and deallocate statements.

2009-05-14  Steven G. Kargl  <kargl@gcc.gnu.org>

    * dump-parse-tree.c (show_code_node): Add ERRMSG to the dumping
    of allocate and deallocate statements.

From-SVN: r147545
parent 09639a83
2009-05-14 Steven G. Kargl <kargl@gcc.gnu.org>
* dump-parse-tree.c (show_code_node): Add ERRMSG to the dumping
of allocate and deallocate statements.
2009-05-14 Ian Lance Taylor <iant@google.com>
* decl.c (match_attr_spec): Change d to unsigned int.
......
......@@ -1420,6 +1420,12 @@ show_code_node (int level, gfc_code *c)
show_expr (c->expr1);
}
if (c->expr2)
{
fputs (" ERRMSG=", dumpfile);
show_expr (c->expr2);
}
for (a = c->ext.alloc_list; a; a = a->next)
{
fputc (' ', dumpfile);
......@@ -1436,6 +1442,12 @@ show_code_node (int level, gfc_code *c)
show_expr (c->expr1);
}
if (c->expr2)
{
fputs (" ERRMSG=", dumpfile);
show_expr (c->expr2);
}
for (a = c->ext.alloc_list; a; a = a->next)
{
fputc (' ', dumpfile);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment