tree-pretty-print.c (dump_generic_node): Dump CALL_EXPR_HAS_RETURN_SLOT_ADDR.

* tree-pretty-print.c (dump_generic_node): Dump
        CALL_EXPR_HAS_RETURN_SLOT_ADDR.

From-SVN: r84974
This commit is contained in:
Richard Henderson 2004-07-20 15:43:41 -07:00 committed by Richard Henderson
parent 3cbf09de66
commit 40a37b0473
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-07-20 Richard Henderson <rth@redhat.com>
* tree-pretty-print.c (dump_generic_node): Dump
CALL_EXPR_HAS_RETURN_SLOT_ADDR.
2004-07-20 Frank Ch. Eigler <fche@redhat.com>
* tree-mudflap.c (mf_set_options_fndecl): New tree.

View File

@ -898,6 +898,8 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
pp_character (buffer, ']');
}
if (CALL_EXPR_HAS_RETURN_SLOT_ADDR (node))
pp_string (buffer, " [return slot addr]");
if (CALL_EXPR_TAILCALL (node))
pp_string (buffer, " [tail call]");
break;