2002-04-29 Roland McGrath <roland@frob.com>
authorRoland McGrath <roland@gnu.org>
Mon, 29 Apr 2002 07:46:42 +0000 (07:46 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 29 Apr 2002 07:46:42 +0000 (07:46 +0000)
* include/libc-symbols.h (link_warning): Use `unused' attribute.

include/libc-symbols.h

index 11c87c8..901458a 100644 (file)
 #   define link_warning(symbol, msg) \
   __make_section_unallocated (".gnu.warning." #symbol) \
   static const char __evoke_link_warning_##symbol[]    \
-    __attribute__ ((section (".gnu.warning." #symbol "\"\n\t#\""))) = msg;
+    __attribute__ ((unused, section (".gnu.warning." #symbol "\"\n\t#\""))) \
+    = msg;
 #  else
 #   define link_warning(symbol, msg) \
   __make_section_unallocated (".gnu.warning." #symbol) \
   static const char __evoke_link_warning_##symbol[]    \
-    __attribute__ ((section (".gnu.warning." #symbol "\n\t#"))) = msg;
+    __attribute__ ((unused, section (".gnu.warning." #symbol "\n\t#"))) = msg;
 #  endif
 # else /* Not ELF: a.out */
 #  ifdef HAVE_XCOFF