Fix disassembly for PowerPC

* disassemble.c (disassemble_init_for_target): Don't put PRU
	between powerpc and rs6000 cases.
This commit is contained in:
Dimitar Dimitrov 2017-12-15 06:45:47 +02:00 committed by Alan Modra
parent 141975a1e5
commit fbc2255575
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2017-12-15 Dimitar Dimitrov <dimitar@dinux.eu>
* disassemble.c (disassemble_init_for_target): Don't put PRU
between powerpc and rs6000 cases.
2017-12-15 Jan Beulich <jbeulich@suse.com>
* i386-opc.tbl (adc, add, and, cmp, cmps, in, ins, lods, mov,

View File

@ -651,14 +651,14 @@ disassemble_init_for_target (struct disassemble_info * info)
}
break;
#endif
#ifdef ARCH_powerpc
case bfd_arch_powerpc:
#endif
#ifdef ARCH_pru
case bfd_arch_pru:
info->disassembler_needs_relocs = TRUE;
break;
#endif
#ifdef ARCH_powerpc
case bfd_arch_powerpc:
#endif
#ifdef ARCH_rs6000
case bfd_arch_rs6000:
#endif