diff options
author | aesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-12 08:17:18 +0000 |
---|---|---|
committer | aesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-12 08:17:18 +0000 |
commit | b3dc5aaf5caa6d8246666c16231f81a960200e21 (patch) | |
tree | 50edc73e15187fc0485dcfa1347002e1537aea50 /gcc/targhooks.c | |
parent | 283681bbcbeb2515caade5ebdf3af24d538d5e10 (diff) | |
download | gcc-b3dc5aaf5caa6d8246666c16231f81a960200e21.tar.gz |
* targhooks.c (default_function_value): Don't use
FUNCTION_OUTGOING_VALUE.
* system.h (FUNCTION_OUTGOING_VALUE): Poison.
* doc/tm.texi (FUNCTION_OUTGOING_VALUE): Removed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160656 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/targhooks.c')
-rw-r--r-- | gcc/targhooks.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c index 821b83f9d23..6c1d2588e44 100644 --- a/gcc/targhooks.c +++ b/gcc/targhooks.c @@ -673,11 +673,6 @@ default_function_value (const_tree ret_type ATTRIBUTE_UNUSED, && !DECL_P (fn_decl_or_type)) fn_decl_or_type = NULL; -#ifdef FUNCTION_OUTGOING_VALUE - if (outgoing) - return FUNCTION_OUTGOING_VALUE (ret_type, fn_decl_or_type); -#endif - #ifdef FUNCTION_VALUE return FUNCTION_VALUE (ret_type, fn_decl_or_type); #else |