diff options
author | Ben Elliston <bje@au.ibm.com> | 2006-05-04 05:05:25 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2006-05-04 05:05:25 +0000 |
commit | 9578239d3edd0341cca6686bdf89ba9f5a1cd9f7 (patch) | |
tree | adbc992b8c6d413b1aa379e1723a5dcb36310a6f /bfd/ihex.c | |
parent | 251533c9556bbb894524588ff15ed02ce645f264 (diff) | |
download | gdb-9578239d3edd0341cca6686bdf89ba9f5a1cd9f7.zip gdb-9578239d3edd0341cca6686bdf89ba9f5a1cd9f7.tar.gz gdb-9578239d3edd0341cca6686bdf89ba9f5a1cd9f7.tar.bz2 |
* coff-or32.c (bfd_section_from_shdr): Remove unused local
variable `ptr'.
* cofflink.c (process_embedded_commands): Remove unused local
variables `had_read' and `had_shared'.
* ecofflink.c (bfd_ecoff_debug_accumulate): Remove unused local
variable `fdr_adr'.
* ihex.c (ihex_read_section): Remove unused local variable `addr'.
Diffstat (limited to 'bfd/ihex.c')
-rw-r--r-- | bfd/ihex.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -553,7 +553,6 @@ ihex_read_section (bfd *abfd, asection *section, bfd_byte *contents) { char hdr[8]; unsigned int len; - bfd_vma addr; unsigned int type; unsigned int i; @@ -568,7 +567,6 @@ ihex_read_section (bfd *abfd, asection *section, bfd_byte *contents) goto error_return; len = HEX2 (hdr); - addr = HEX4 (hdr + 2); type = HEX2 (hdr + 6); /* We should only see type 0 records here. */ |