i386.c (ix86_return_in_memory): Do not remove ATTRIBUTE_UNUSED on function argument.

* config/i386/i386.c (ix86_return_in_memory): Do not
	remove ATTRIBUTE_UNUSED on function argument.

From-SVN: r201990
This commit is contained in:
Uros Bizjak 2013-08-26 11:21:51 +02:00
parent 8dc7066751
commit 8616e65ce8
2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,6 @@
(ix86_handle_tm_regparm_attribute): Remove ATTRIBUTE_UNUSED on used
arguments.
(ix86_pass_by_reference): Ditto.
(ix86_return_in_memory): Ditto.
(output_set_got): Ditto.
(ix86_unary_operator_ok): Ditto.
(ix86_expand_builtin): Ditto.

View File

@ -7756,7 +7756,7 @@ return_in_memory_ms_64 (const_tree type, enum machine_mode mode)
}
static bool
ix86_return_in_memory (const_tree type, const_tree fntype)
ix86_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
{
#ifdef SUBTARGET_RETURN_IN_MEMORY
return SUBTARGET_RETURN_IN_MEMORY (type, fntype);