diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-20 22:43:41 +0000 | 
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-20 22:43:41 +0000 | 
| commit | 6ad9daa3fc480f9330efd5780c41e4be98253683 (patch) | |
| tree | ac8571f2a932a9db4f637277217349d34140b386 /gcc | |
| parent | f85ee61a128724417a8209023b99a671088880c4 (diff) | |
| download | ppe42-gcc-6ad9daa3fc480f9330efd5780c41e4be98253683.tar.gz ppe42-gcc-6ad9daa3fc480f9330efd5780c41e4be98253683.zip | |
        * tree-pretty-print.c (dump_generic_node): Dump
        CALL_EXPR_HAS_RETURN_SLOT_ADDR.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84974 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/tree-pretty-print.c | 2 | 
2 files changed, 7 insertions, 0 deletions
| diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7d7cbd4eda0..ba21f5c40bf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index c187b1a8696..3c755b72502 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -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; | 

