Set display_endian based on target endianism.
This commit is contained in:
parent
9484f685a5
commit
a8a9050d4a
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
1999-05-06 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* objdump.c (disassemble_data): Set display_endian based on target
|
||||
endianism.
|
||||
|
||||
1999-05-05 Catherine Moore <clm@cygnus.com>
|
||||
|
||||
* dlltool.c (interwork): Remove.
|
||||
|
|
|
@ -1560,9 +1560,9 @@ disassemble_data (abfd)
|
|||
disasm_info.arch = bfd_get_arch (abfd);
|
||||
disasm_info.mach = bfd_get_mach (abfd);
|
||||
if (bfd_big_endian (abfd))
|
||||
disasm_info.endian = BFD_ENDIAN_BIG;
|
||||
disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_BIG;
|
||||
else if (bfd_little_endian (abfd))
|
||||
disasm_info.endian = BFD_ENDIAN_LITTLE;
|
||||
disasm_info.display_endian = disasm_info.endian = BFD_ENDIAN_LITTLE;
|
||||
else
|
||||
/* ??? Aborting here seems too drastic. We could default to big or little
|
||||
instead. */
|
||||
|
|
Loading…
Reference in a new issue