Commit 40a37b04 by Richard Henderson Committed by Richard Henderson

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
parent 3cbf09de
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> 2004-07-20 Frank Ch. Eigler <fche@redhat.com>
* tree-mudflap.c (mf_set_options_fndecl): New tree. * tree-mudflap.c (mf_set_options_fndecl): New tree.
......
...@@ -898,6 +898,8 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags, ...@@ -898,6 +898,8 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
pp_character (buffer, ']'); pp_character (buffer, ']');
} }
if (CALL_EXPR_HAS_RETURN_SLOT_ADDR (node))
pp_string (buffer, " [return slot addr]");
if (CALL_EXPR_TAILCALL (node)) if (CALL_EXPR_TAILCALL (node))
pp_string (buffer, " [tail call]"); pp_string (buffer, " [tail call]");
break; break;
......
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