Commit 139fa6f8 by Michael Meissner Committed by Michael Meissner

Mark args as unused.

From-SVN: r29830
parent df231a09
...@@ -2,7 +2,8 @@ Tue Oct 5 15:37:04 1999 Michael Meissner <meissner@cygnus.com> ...@@ -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 * libgcc2.c (toplevel): If inhibit_libc is defined, declare
malloc, free, and atexit. Don't include stddef.h twice. 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 * frame.c (toplevel): If inhibit_libc is defined, declare
malloc and free. malloc and free.
......
...@@ -2470,7 +2470,8 @@ unsigned int __shtab[] = { ...@@ -2470,7 +2470,8 @@ unsigned int __shtab[] = {
#define INSN_CACHE_PLANE_SIZE (INSN_CACHE_SIZE / INSN_CACHE_DEPTH) #define INSN_CACHE_PLANE_SIZE (INSN_CACHE_SIZE / INSN_CACHE_DEPTH)
void void
__clear_cache (char *beg, char *end) __clear_cache (char *beg __attribute__((__unused__)),
char *end __attribute__((__unused__)))
{ {
#ifdef CLEAR_INSN_CACHE #ifdef CLEAR_INSN_CACHE
CLEAR_INSN_CACHE (beg, end); CLEAR_INSN_CACHE (beg, end);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment