Commit e55e18d6 by Mark Mitchell Committed by Mark Mitchell

* dump.c (dequeue_and_dump): Handle CTOR_STMTs.

From-SVN: r31073
parent f13734bb
1999-12-22 Mark Mitchell <mark@codesourcery.com>
* dump.c (dequeue_and_dump): Handle CTOR_STMTs.
1999-12-22 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* error.c (dump_decl): Support named return values.
......
......@@ -646,6 +646,15 @@ dequeue_and_dump (di)
dump_next_stmt (di, t);
break;
case CTOR_STMT:
dump_stmt (di, t);
if (CTOR_BEGIN_P (t))
dump_string (di, "begn");
else
dump_string (di, "end");
dump_next_stmt (di, t);
break;
case DECL_STMT:
dump_stmt (di, t);
dump_child ("decl", DECL_STMT_DECL (t));
......
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