2014-07-28 Trevor Saunders <tsaunders@mozilla.com>
authortbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Jul 2014 21:42:21 +0000 (21:42 +0000)
committertbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Jul 2014 21:42:21 +0000 (21:42 +0000)
* config/i386/i386.c (ix86_return_in_memory): replace one
ATTRIBUTE_UNUSED where the attribute can actually sometimes be unused.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@213142 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/i386/i386.c

index db8643e..71660a1 100644 (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.
index 9de2035..1cb6297 100644 (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);