]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
i386.c (ix86_return_in_memory): replace one ATTRIBUTE_UNUSED where the attribute...
authorTrevor Saunders <tsaunders@mozilla.com>
Mon, 28 Jul 2014 21:42:21 +0000 (21:42 +0000)
committerTrevor Saunders <tbsaunde@gcc.gnu.org>
Mon, 28 Jul 2014 21:42:21 +0000 (21:42 +0000)
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

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

index db8643e7ac974f3c47ca22f3abd41039873998d5..71660a1fc96d56a90f1220c4b44a607747af5fce 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 9de2035336cd08461e4538449055a3fbb4fbb8ea..1cb62976ebd68e53f0985881be15b75627c9a4bf 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);