Mark args as unused.
authorMichael Meissner <meissner@cygnus.com>
Tue, 5 Oct 1999 19:48:55 +0000 (19:48 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Tue, 5 Oct 1999 19:48:55 +0000 (19:48 +0000)
From-SVN: r29830

gcc/ChangeLog
gcc/libgcc2.c

index 46dec8b7d6f05915d8f470799d805f4b626ed9b7..61256e1fe64fcfb36d8290439abe919fe3daf143 100644 (file)
@@ -2,7 +2,8 @@ Tue Oct  5 15:37:04 1999  Michael Meissner  <meissner@cygnus.com>
 
        * libgcc2.c (toplevel): If inhibit_libc is defined, declare
        malloc, free, and atexit.  Don't include stddef.h twice.
-
+       (__clear_cache): Mark arguments as potentially unused.
+       
        * frame.c (toplevel): If inhibit_libc is defined, declare
        malloc and free.
 
index 0cf8c5ce1aa605cf4496819b76fb8932dd8bca58..3c3bbe839cc363ea1aa844d6127737869f909453 100644 (file)
@@ -2470,7 +2470,8 @@ unsigned int __shtab[] = {
 #define INSN_CACHE_PLANE_SIZE (INSN_CACHE_SIZE / INSN_CACHE_DEPTH)
 
 void
-__clear_cache (char *beg, char *end)
+__clear_cache (char *beg __attribute__((__unused__)),
+              char *end __attribute__((__unused__)))
 {
 #ifdef CLEAR_INSN_CACHE 
   CLEAR_INSN_CACHE (beg, end);