aboutsummaryrefslogtreecommitdiff
path: root/gcc/targhooks.c
diff options
context:
space:
mode:
authorAnatoly Sokolov <aesok@post.ru>2010-06-12 12:17:18 +0400
committerAnatoly Sokolov <aesok@gcc.gnu.org>2010-06-12 12:17:18 +0400
commit153a30276e1c07f7e7d6d926fa45c056cdca9e85 (patch)
tree50edc73e15187fc0485dcfa1347002e1537aea50 /gcc/targhooks.c
parent48b09a925e246f1bfafd52d5441ab9e111924ddf (diff)
downloadgcc-153a30276e1c07f7e7d6d926fa45c056cdca9e85.zip
gcc-153a30276e1c07f7e7d6d926fa45c056cdca9e85.tar.gz
gcc-153a30276e1c07f7e7d6d926fa45c056cdca9e85.tar.bz2
targhooks.c (default_function_value): Don't use FUNCTION_OUTGOING_VALUE.
* targhooks.c (default_function_value): Don't use FUNCTION_OUTGOING_VALUE. * system.h (FUNCTION_OUTGOING_VALUE): Poison. * doc/tm.texi (FUNCTION_OUTGOING_VALUE): Removed. From-SVN: r160656
Diffstat (limited to 'gcc/targhooks.c')
-rw-r--r--gcc/targhooks.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c
index 821b83f..6c1d258 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