summaryrefslogtreecommitdiff
path: root/gas/write.c
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2011-08-01 09:05:40 +0000
committerTristan Gingold <gingold@adacore.com>2011-08-01 09:05:40 +0000
commit28883e153286e11d07dcbc8595e0dafc9e12e048 (patch)
treecbd287040d4e4d97b9f3f5c051b9787e4c61cd63 /gas/write.c
parent54a9f7127809ea5b4ac2889e84b1c053cd60f4cc (diff)
downloadbinutils-redhat-28883e153286e11d07dcbc8595e0dafc9e12e048.tar.gz
2011-08-01 Tristan Gingold <gingold@adacore.com>
* write.c (write_relocs): Fix -Wshadow in DEBUG3 and DEBUG4.
Diffstat (limited to 'gas/write.c')
-rw-r--r--gas/write.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/gas/write.c b/gas/write.c
index 1bd1a622cb..5eb4b56ef7 100644
--- a/gas/write.c
+++ b/gas/write.c
@@ -1233,15 +1233,15 @@ write_relocs (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
#ifdef DEBUG4
{
- unsigned int i, j, nsyms;
+ unsigned int k, j, nsyms;
asymbol **sympp;
sympp = bfd_get_outsymbols (stdoutput);
nsyms = bfd_get_symcount (stdoutput);
- for (i = 0; i < n; i++)
- if (((*relocs[i]->sym_ptr_ptr)->flags & BSF_SECTION_SYM) == 0)
+ for (k = 0; k < n; k++)
+ if (((*relocs[k]->sym_ptr_ptr)->flags & BSF_SECTION_SYM) == 0)
{
for (j = 0; j < nsyms; j++)
- if (sympp[j] == *relocs[i]->sym_ptr_ptr)
+ if (sympp[j] == *relocs[k]->sym_ptr_ptr)
break;
if (j == nsyms)
abort ();
@@ -1280,16 +1280,16 @@ write_relocs (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
#ifdef DEBUG3
{
- unsigned int i;
- arelent *r;
- asymbol *s;
+ unsigned int k;
+
fprintf (stderr, "relocs for sec %s\n", sec->name);
- for (i = 0; i < n; i++)
+ for (k = 0; k < n; k++)
{
- r = relocs[i];
- s = *r->sym_ptr_ptr;
+ arelent *rel = relocs[k];
+ asymbol *s = *rel->sym_ptr_ptr;
fprintf (stderr, " reloc %2d @%p off %4lx : sym %-10s addend %lx\n",
- i, r, (unsigned long)r->address, s->name, (unsigned long)r->addend);
+ k, rel, (unsigned long)rel->address, s->name,
+ (unsigned long)rel->addend);
}
}
#endif