diff options
author | Nick Clifton <nickc@redhat.com> | 2009-12-11 13:42:17 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2009-12-11 13:42:17 +0000 |
commit | 91d6fa6a035cc7d0b7be5c99c194a64cb80924b0 (patch) | |
tree | 214507c313b77d619b52afcae2af0b02c9fa700b /bfd/vms-tir.c | |
parent | 01fe1b4183324882e88e8c64748bffdc69ea3a9c (diff) | |
download | gdb-91d6fa6a035cc7d0b7be5c99c194a64cb80924b0.zip gdb-91d6fa6a035cc7d0b7be5c99c194a64cb80924b0.tar.gz gdb-91d6fa6a035cc7d0b7be5c99c194a64cb80924b0.tar.bz2 |
Add -Wshadow to the gcc command line options used when compiling the binutils.
Fix up all warnings generated by the addition of this switch.
Diffstat (limited to 'bfd/vms-tir.c')
-rw-r--r-- | bfd/vms-tir.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/vms-tir.c b/bfd/vms-tir.c index 5bc61da..86b55ce 100644 --- a/bfd/vms-tir.c +++ b/bfd/vms-tir.c @@ -2318,7 +2318,7 @@ static void etir_output_check (bfd *abfd, asection *section, bfd_vma vaddr, /* Start ETIR record for section #index at virtual addr offset. */ static void -start_etir_record (bfd * abfd, int index, uquad offset, bfd_boolean justoffset) +start_etir_record (bfd * abfd, int sec_index, uquad offset, bfd_boolean justoffset) { if (!justoffset) { @@ -2329,7 +2329,7 @@ start_etir_record (bfd * abfd, int index, uquad offset, bfd_boolean justoffset) /* Push start offset. */ _bfd_vms_output_begin (abfd, ETIR_S_C_STA_PQ, -1); - _bfd_vms_output_long (abfd, (unsigned long) index); + _bfd_vms_output_long (abfd, (unsigned long) sec_index); _bfd_vms_output_quad (abfd, (uquad) offset); _bfd_vms_output_flush (abfd); @@ -2346,11 +2346,11 @@ end_etir_record (bfd * abfd) } /* Output a STO_IMM command for SSIZE bytes of data from CPR at virtual - address VADDR in section specified by INDEX and NAME. */ + address VADDR in section specified by SEC_INDEX and NAME. */ static void sto_imm (bfd *abfd, bfd_size_type ssize, unsigned char *cptr, bfd_vma vaddr, - int index, const char *name) + int sec_index, const char *name) { bfd_size_type size; @@ -2372,7 +2372,7 @@ sto_imm (bfd *abfd, bfd_size_type ssize, unsigned char *cptr, bfd_vma vaddr, if (name [0] && name[1] == 'v' && !strcmp (name, ".vmsdebug")) start_another_etbt_record (abfd); else - start_etir_record (abfd, index, vaddr, FALSE); + start_etir_record (abfd, sec_index, vaddr, FALSE); size = _bfd_vms_output_check (abfd, 0); /* get max size */ if (size > ssize) /* more than what's left ? */ |