diff options
author | Alan Modra <amodra@gmail.com> | 2003-05-09 11:35:35 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-05-09 11:35:35 +0000 |
commit | 60d8b5244dbca59d8f17500cc9a09cb6f3daeb38 (patch) | |
tree | bde872b2c60bea1c4b4bb4532457ba28604bb3f7 /bfd/elfxx-ia64.c | |
parent | e57b535673bf8d486684a8c38023b9bd146d8b9f (diff) | |
download | gdb-60d8b5244dbca59d8f17500cc9a09cb6f3daeb38.zip gdb-60d8b5244dbca59d8f17500cc9a09cb6f3daeb38.tar.gz gdb-60d8b5244dbca59d8f17500cc9a09cb6f3daeb38.tar.bz2 |
* cpu-arm.c (arm_check_note): Warning fix.
* elf32-iq2000.c (iq2000_elf_check_relocs): Warning fixes. Arrange
to keep relocs if edited.
(iq2000_elf_print_private_bfd_data): Return TRUE.
* elfxx-ia64.c (elfNN_ia64_relax_section): Use ELFNN_R_SYM, not
ELF64_R_SYM.
(elfNN_ia64_relax_ldxmov): Warning fix.
* xtensa-isa.c (xtensa_add_isa): Warning fix.
* xtensa-modules.c (get_num_opcodes): Warning fix.
Diffstat (limited to 'bfd/elfxx-ia64.c')
-rw-r--r-- | bfd/elfxx-ia64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfxx-ia64.c b/bfd/elfxx-ia64.c index 65713a0..ab2ff21 100644 --- a/bfd/elfxx-ia64.c +++ b/bfd/elfxx-ia64.c @@ -796,7 +796,7 @@ elfNN_ia64_relax_section (abfd, sec, link_info, again) goto error_return; } - isym = isymbuf + ELF64_R_SYM (irel->r_info); + isym = isymbuf + ELFNN_R_SYM (irel->r_info); if (isym->st_shndx == SHN_UNDEF) continue; /* We can't do anthing with undefined symbols. */ else if (isym->st_shndx == SHN_ABS) @@ -1089,7 +1089,7 @@ elfNN_ia64_relax_ldxmov (abfd, contents, off) case 0: shift = 5; break; case 1: shift = 14; off += 3; break; case 2: shift = 23; off += 6; break; - case 3: + default: abort (); } |