* v850-dis.c (disassemble): Remove bfd_mach_v850ea case.
* mips-dis.c (_print_insn_mips): Don't use hard-coded mach constants.
This commit is contained in:
parent
37f45cf898
commit
53f32ea5c6
3 changed files with 7 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2002-08-30 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* v850-dis.c (disassemble): Remove bfd_mach_v850ea case.
|
||||||
|
|
||||||
|
* mips-dis.c (_print_insn_mips): Don't use hard-coded mach constants.
|
||||||
|
|
||||||
2002-08-28 Svein E. Seldal <Svein.Seldal@solidas.com>
|
2002-08-28 Svein E. Seldal <Svein.Seldal@solidas.com>
|
||||||
|
|
||||||
* configure.in: Added bfd_tic4x_arch.
|
* configure.in: Added bfd_tic4x_arch.
|
||||||
|
|
|
@ -595,7 +595,7 @@ _print_insn_mips (memaddr, info, endianness)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if SYMTAB_AVAILABLE
|
#if SYMTAB_AVAILABLE
|
||||||
if (info->mach == 16
|
if (info->mach == bfd_mach_mips16
|
||||||
|| (info->flavour == bfd_target_elf_flavour
|
|| (info->flavour == bfd_target_elf_flavour
|
||||||
&& info->symbols != NULL
|
&& info->symbols != NULL
|
||||||
&& ((*(elf_symbol_type **) info->symbols)->internal_elf_sym.st_other
|
&& ((*(elf_symbol_type **) info->symbols)->internal_elf_sym.st_other
|
||||||
|
|
|
@ -77,10 +77,6 @@ disassemble (memaddr, info, insn)
|
||||||
case bfd_mach_v850e:
|
case bfd_mach_v850e:
|
||||||
target_processor = PROCESSOR_V850E;
|
target_processor = PROCESSOR_V850E;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case bfd_mach_v850ea:
|
|
||||||
target_processor = PROCESSOR_V850EA;
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Find the opcode. */
|
/* Find the opcode. */
|
||||||
|
|
Loading…
Reference in a new issue