* score-tdep.c (score_print_insn): Get the current endianess from
disassemble_info instead of gdbarch_byte_order.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-05-21 Markus Deuling <deuling@de.ibm.com>
|
||||
|
||||
* score-tdep.c (score_print_insn): Get the current endianess from
|
||||
disassemble_info instead of gdbarch_byte_order.
|
||||
|
||||
2008-05-21 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* frame.c (get_prev_frame_1): Build frame id before setting
|
||||
|
||||
+1
-1
@@ -314,7 +314,7 @@ score_register_sim_regno (struct gdbarch *gdbarch, int regnum)
|
||||
static int
|
||||
score_print_insn (bfd_vma memaddr, struct disassemble_info *info)
|
||||
{
|
||||
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
|
||||
if (info->endian == BFD_ENDIAN_BIG)
|
||||
return print_insn_big_score (memaddr, info);
|
||||
else
|
||||
return print_insn_little_score (memaddr, info);
|
||||
|
||||
Reference in New Issue
Block a user