aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-05-02 02:29:17 +0000
committerAlan Modra <amodra@gmail.com>2000-05-02 02:29:17 +0000
commit0f371bb497df3469f660fd7f1925e5f96ea898a0 (patch)
treeac72dcdb94c19883fe922c9c97a6e536e3307b3f /binutils
parent99a4150f8bbe52591984a85bb86b820e85776b38 (diff)
downloadgdb-0f371bb497df3469f660fd7f1925e5f96ea898a0.zip
gdb-0f371bb497df3469f660fd7f1925e5f96ea898a0.tar.gz
gdb-0f371bb497df3469f660fd7f1925e5f96ea898a0.tar.bz2
fix gcc warnings
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog6
-rw-r--r--binutils/coffgrok.c2
-rw-r--r--binutils/srconv.c31
-rw-r--r--binutils/sysdump.c4
4 files changed, 25 insertions, 18 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 81a6cba..008456a 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,9 @@
+2000-05-02 Kazu Hirata <kazu@hxi.com>
+
+ * coffgrok.c: Add ATTRIBUTE_UNUSED as appropriate.
+ * srconv.c: Likewise.
+ * sysdump.c: Likewise.
+
Sun Apr 23 14:23:26 2000 Denis Chertykov <denisc@overta.ru>
* readelf.c (guess_is_rela): AVR uses RELA relocations.
diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c
index 8c4e6c9..3486c5f 100644
--- a/binutils/coffgrok.c
+++ b/binutils/coffgrok.c
@@ -245,7 +245,7 @@ static
struct coff_line *
do_lines (i, name)
int i;
- char *name;
+ char *name ATTRIBUTE_UNUSED;
{
struct coff_line *res = (struct coff_line *) xcalloc (sizeof (struct coff_line), 1);
asection *s;
diff --git a/binutils/srconv.c b/binutils/srconv.c
index c317d98..fb8996b 100644
--- a/binutils/srconv.c
+++ b/binutils/srconv.c
@@ -224,7 +224,7 @@ writeBARRAY (data, ptr, idx, size, file)
barray data;
char *ptr;
int *idx;
- int size;
+ int size ATTRIBUTE_UNUSED;
FILE *file;
{
int i;
@@ -299,7 +299,7 @@ wr_un (ptr, sfile, first, nsecs)
struct coff_ofile *ptr;
struct coff_sfile *sfile;
int first;
- int nsecs;
+ int nsecs ATTRIBUTE_UNUSED;
{
struct IT_un un;
@@ -438,7 +438,7 @@ wr_hd (p)
static void
wr_sh (p, sec)
- struct coff_ofile *p;
+ struct coff_ofile *p ATTRIBUTE_UNUSED;
struct coff_section *sec;
{
struct IT_sh sh;
@@ -453,7 +453,7 @@ wr_sh (p, sec)
static void
wr_ob (p, section)
- struct coff_ofile *p;
+ struct coff_ofile *p ATTRIBUTE_UNUSED;
struct coff_section *section;
{
bfd_size_type i;
@@ -514,7 +514,7 @@ wr_ob (p, section)
static void
wr_rl (ptr, sec)
- struct coff_ofile *ptr;
+ struct coff_ofile *ptr ATTRIBUTE_UNUSED;
struct coff_section *sec;
{
int nr = sec->nrelocs;
@@ -586,7 +586,7 @@ wr_object_body (p)
static void
wr_dps_start (sfile, section, scope, type, nest)
struct coff_sfile *sfile;
- struct coff_section *section;
+ struct coff_section *section ATTRIBUTE_UNUSED;
struct coff_scope *scope;
int type;
int nest;
@@ -623,8 +623,8 @@ wr_dps_start (sfile, section, scope, type, nest)
static void
wr_dps_end (section, scope, type)
- struct coff_section *section;
- struct coff_scope *scope;
+ struct coff_section *section ATTRIBUTE_UNUSED;
+ struct coff_scope *scope ATTRIBUTE_UNUSED;
int type;
{
struct IT_dps dps;
@@ -960,7 +960,7 @@ walk_tree_type (sfile, symbol, type, nest)
static void
walk_tree_symbol (sfile, section, symbol, nest)
struct coff_sfile *sfile;
- struct coff_section *section;
+ struct coff_section *section ATTRIBUTE_UNUSED;
struct coff_symbol *symbol;
int nest;
{
@@ -1329,7 +1329,7 @@ wr_du (p, sfile, n)
static void
wr_dus (p, sfile)
- struct coff_ofile *p;
+ struct coff_ofile *p ATTRIBUTE_UNUSED;
struct coff_sfile *sfile;
{
@@ -1373,11 +1373,12 @@ find_base (sfile, section)
{
return sfile->section[section->number].low;
}
+
static void
wr_dln (p, sfile, n)
- struct coff_ofile *p;
+ struct coff_ofile *p ATTRIBUTE_UNUSED;
struct coff_sfile *sfile;
- int n;
+ int n ATTRIBUTE_UNUSED;
{
#if 0
@@ -1517,7 +1518,7 @@ static void
wr_globals (p, sfile, n)
struct coff_ofile *p;
struct coff_sfile *sfile;
- int n;
+ int n ATTRIBUTE_UNUSED;
{
struct coff_symbol *sy;
for (sy = p->symbol_list_head;
@@ -1734,7 +1735,7 @@ return scount;
static void
wr_er (ptr, sfile, first)
struct coff_ofile *ptr;
- struct coff_sfile *sfile;
+ struct coff_sfile *sfile ATTRIBUTE_UNUSED;
int first;
{
int idx = 0;
@@ -1760,7 +1761,7 @@ wr_er (ptr, sfile, first)
static void
wr_ed (ptr, sfile, first)
struct coff_ofile *ptr;
- struct coff_sfile *sfile;
+ struct coff_sfile *sfile ATTRIBUTE_UNUSED;
int first;
{
struct coff_symbol *s;
diff --git a/binutils/sysdump.c b/binutils/sysdump.c
index fd2a0ea..1f8a577 100644
--- a/binutils/sysdump.c
+++ b/binutils/sysdump.c
@@ -131,8 +131,8 @@ barray
getBARRAY (ptr, idx, dsize, max)
unsigned char *ptr;
int *idx;
- int dsize;
- int max;
+ int dsize ATTRIBUTE_UNUSED;
+ int max ATTRIBUTE_UNUSED;
{
barray res;
int i;