* disassemble.c: Formatting.

(disassemble_init_for_target <ARCH_m32c>): Comment on endian.
This commit is contained in:
Alan Modra 2010-08-06 03:59:49 +00:00
parent 1e0061d22e
commit 6ca4eb7789
2 changed files with 14 additions and 9 deletions

View file

@ -1,3 +1,8 @@
2010-08-06 Alan Modra <amodra@gmail.com>
* disassemble.c: Formatting.
(disassemble_init_for_target <ARCH_m32c>): Comment on endian.
2010-08-05 H.J. Lu <hongjiu.lu@intel.com>
* i386-opc.tbl: Add Cpu186 to ud1/ud2/ud2a/ud2b.

View file

@ -114,10 +114,8 @@ disassembler (abfd)
#endif
#ifdef ARCH_arc
case bfd_arch_arc:
{
disassemble = arc_get_disassembler (abfd);
break;
}
#endif
#ifdef ARCH_arm
case bfd_arch_arm:
@ -530,6 +528,8 @@ disassemble_init_for_target (struct disassemble_info * info)
#endif
#ifdef ARCH_m32c
case bfd_arch_m32c:
/* This processor in fact is little endian. The value set here
reflects the way opcodes are written in the cgen description. */
info->endian = BFD_ENDIAN_BIG;
if (! info->insn_sets)
{