diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2011-12-07 00:17:23 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2011-12-07 00:17:23 +0000 |
commit | 5436df9582123e5b169ef0b5fcc338d4ee00cc35 (patch) | |
tree | ea1b23fa494cf96a1180d5cfa3a1f28bae485ff1 | |
parent | c3cd48691afaa2390d312975aefae72cd13e3b72 (diff) | |
download | binutils-5436df9582123e5b169ef0b5fcc338d4ee00cc35.zip binutils-5436df9582123e5b169ef0b5fcc338d4ee00cc35.tar.gz binutils-5436df9582123e5b169ef0b5fcc338d4ee00cc35.tar.bz2 |
* mips-tdep.c (mips32_scan_prologue): Only update the immediate
load adjustment if still within the prologue.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/mips-tdep.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8c67086..312ba18 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2011-12-07 Maciej W. Rozycki <macro@codesourcery.com> + + * mips-tdep.c (mips32_scan_prologue): Only update the immediate + load adjustment if still within the prologue. + 2011-12-06 Maciej W. Rozycki <macro@codesourcery.com> * mips-tdep.c (mips32_next_pc): Fix floating point condition diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index bbfd7e9..64b7629 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -2246,7 +2246,8 @@ restart: || high_word == 0x3408 /* ori $t0,$zero,n */ )) { - load_immediate_bytes += MIPS_INSN32_SIZE; /* FIXME! */ + if (end_prologue_addr == 0) + load_immediate_bytes += MIPS_INSN32_SIZE; /* FIXME! */ } else { |