*** empty log message ***

This commit is contained in:
Markus Deuling
2007-11-07 06:33:01 +00:00
parent 7a22ecfc4b
commit 67d5789459
34 changed files with 103 additions and 49 deletions

View File

@@ -321,7 +321,8 @@ score_print_insn (bfd_vma memaddr, struct disassemble_info *info)
}
static const gdb_byte *
score_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr)
score_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr,
int *lenptr)
{
gdb_byte buf[SCORE_INSTLEN] = { 0 };
int ret;
@@ -334,7 +335,7 @@ score_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr)
}
raw = extract_unsigned_integer (buf, SCORE_INSTLEN);
if (gdbarch_byte_order (current_gdbarch) == BFD_ENDIAN_BIG)
if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
{
if (!(raw & 0x80008000))
{