mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-30 15:30:41 +00:00
* m68k-tdep.c (m68k_analyze_prologue): Fix length of lea insn.
This commit is contained in:
parent
476d8a222c
commit
e4d8bc0898
@ -1,3 +1,7 @@
|
||||
2008-06-02 Roman Zippel <zippel@linux-m68k.org>
|
||||
|
||||
* m68k-tdep.c (m68k_analyze_prologue): Fix length of lea insn.
|
||||
|
||||
2008-06-01 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Do not
|
||||
|
@ -804,7 +804,7 @@ m68k_analyze_prologue (struct gdbarch *gdbarch, CORE_ADDR pc,
|
||||
if (op == P_LEA_PC_A5)
|
||||
{
|
||||
/* lea (%pc,N),%a5 */
|
||||
return pc + 6;
|
||||
return pc + 8;
|
||||
}
|
||||
|
||||
return pc;
|
||||
|
Loading…
Reference in New Issue
Block a user