i386.c (ix86_return_in_memory): replace one ATTRIBUTE_UNUSED where the attribute can actually sometimes be unused.

2014-07-28 Trevor Saunders <tsaunders@mozilla.com>

	* config/i386/i386.c (ix86_return_in_memory): replace one
	ATTRIBUTE_UNUSED where the attribute can actually sometimes be unused.

From-SVN: r213142
This commit is contained in:
Trevor Saunders 2014-07-28 21:42:21 +00:00 committed by Trevor Saunders
parent 5c31cbf009
commit 7c0b8ccdce
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-07-28 Trevor Saunders <tsaunders@mozilla.com>
* config/i386/i386.c (ix86_return_in_memory): replace one
ATTRIBUTE_UNUSED where the attribute can actually sometimes be unused.
2014-07-28 Marek Polacek <polacek@redhat.com>
* doc/invoke.texi (-Wno-odr): Fix @item entry. Tweak wording.

View File

@ -8018,7 +8018,7 @@ ix86_libcall_value (enum machine_mode mode)
/* Return true iff type is returned in memory. */
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);