diff options
author | Alan Modra <amodra@gmail.com> | 2001-05-07 09:15:26 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-05-07 09:15:26 +0000 |
commit | 062e23589d2fdda4a6de3e540150a8df23671a36 (patch) | |
tree | 7f1c1ed8b3e518ce8e109e134af7d55f9b3cab6f /bfd/elf32-mips.c | |
parent | ff88f59d5a07b674c669c08b64d047e501192b0c (diff) | |
download | gdb-062e23589d2fdda4a6de3e540150a8df23671a36.zip gdb-062e23589d2fdda4a6de3e540150a8df23671a36.tar.gz gdb-062e23589d2fdda4a6de3e540150a8df23671a36.tar.bz2 |
* ecoff.c (bfd_debug_section): Fix initialization.
* elf.c (_bfd_elf_slurp_version_tables): Change maxidx to unsigned, it
is always a positive integer. Cast away sign mismatch.
* elf32-mips.c: Fix misleading comment and typo.
(_bfd_mips_elf_section_from_bfd_section): Remove unused attribute, use
correct data type.
* elflink.c: Fix typo.
(_bfd_elf_create_dynamic_sections): Remove superfluous initialization.
* ecoffswap.h (ecoff_swap_fdr_in): Cast away sign mismatch.
Diffstat (limited to 'bfd/elf32-mips.c')
-rw-r--r-- | bfd/elf32-mips.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c index 065e7d7..7f077e9 100644 --- a/bfd/elf32-mips.c +++ b/bfd/elf32-mips.c @@ -1,4 +1,4 @@ -/* MIPS-specific support for 32-bit ELF +l/* MIPS-specific support for 32-bit ELF Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. @@ -539,7 +539,7 @@ static reloc_howto_type elf_mips_howto_table[] = 0xffffffff, /* dst_mask */ false), /* pcrel_offset */ - /* 26 bit branch address. */ + /* 26 bit jump address. */ HOWTO (R_MIPS_26, /* type */ 2, /* rightshift */ 2, /* size (0 = byte, 1 = short, 2 = long) */ @@ -1667,7 +1667,7 @@ gprel32_with_gp (abfd, symbol, reloc_entry, input_section, relocateable, data, } /* Handle a 64 bit reloc in a 32 bit MIPS ELF file. These are - generated when addreses are 64 bits. The upper 32 bits are a simle + generated when addresses are 64 bits. The upper 32 bits are a simple sign extension. */ static bfd_reloc_status_type @@ -3071,8 +3071,8 @@ _bfd_mips_elf_fake_sections (abfd, hdr, sec) boolean _bfd_mips_elf_section_from_bfd_section (abfd, hdr, sec, retval) - bfd *abfd ATTRIBUTE_UNUSED; - Elf32_Internal_Shdr *hdr ATTRIBUTE_UNUSED; + bfd *abfd; + Elf_Internal_Shdr *hdr ATTRIBUTE_UNUSED; asection *sec; int *retval; { |