diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-07-11 20:09:04 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-07-11 20:09:04 +0000 |
commit | 87f2a3464bc56880619910126816120eeafdb1e2 (patch) | |
tree | 5889dc929e03609fc7e2ef7e6aaf04da15336f43 /ld/ldemul.c | |
parent | 8622e41b9ffd432fc916f0dd2fc8227f27eea3a9 (diff) | |
download | gdb-87f2a3464bc56880619910126816120eeafdb1e2.zip gdb-87f2a3464bc56880619910126816120eeafdb1e2.tar.gz gdb-87f2a3464bc56880619910126816120eeafdb1e2.tar.bz2 |
* Many files: Changes to avoid gcc warnings: Add ATTRIBUTE_UNUSED
as appropriate. Fill in structure initializations.
Diffstat (limited to 'ld/ldemul.c')
-rw-r--r-- | ld/ldemul.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ld/ldemul.c b/ld/ldemul.c index eab0432..85a2894 100644 --- a/ld/ldemul.c +++ b/ld/ldemul.c @@ -1,5 +1,6 @@ /* ldemul.c -- clearing house for ld emulation states - Copyright (C) 1991, 92, 93, 94, 95, 96, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 1999 + Free Software Foundation, Inc. This file is part of GLD, the Gnu Linker. @@ -218,7 +219,7 @@ set_output_arch_default() /*ARGSUSED*/ void syslib_default(ignore) - char *ignore; + char *ignore ATTRIBUTE_UNUSED; { info_msg (_("%S SYSLIB ignored\n")); } @@ -226,7 +227,7 @@ syslib_default(ignore) /*ARGSUSED*/ void hll_default(ignore) - char *ignore; + char *ignore ATTRIBUTE_UNUSED; { info_msg (_("%S HLL ignored\n")); } |