2012-12-25 Sergio Durigan Junior <sergiodj@redhat.com>

* frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Fix typo.
This commit is contained in:
Sergio Durigan Junior 2012-12-25 17:27:49 +00:00
parent f35a17b542
commit 137a83b9f9
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-12-25 Sergio Durigan Junior <sergiodj@redhat.com>
* frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Fix typo.
2012-12-25 Jan Kratochvil <jan.kratochvil@redhat.com>
* ada-lang.c (is_known_support_routine): New variable fullname. Use

View File

@ -57,7 +57,7 @@ frv_linux_pc_in_sigtramp (struct gdbarch *gdbarch, CORE_ADDR pc,
if (instr == 0x8efc0077) /* setlos #__NR_sigreturn, gr7 */
retval = NORMAL_SIGTRAMP;
else if (instr -= 0x8efc00ad) /* setlos #__NR_rt_sigreturn, gr7 */
else if (instr == 0x8efc00ad) /* setlos #__NR_rt_sigreturn, gr7 */
retval = RT_SIGTRAMP;
else
return 0;