2012-12-25 Sergio Durigan Junior <sergiodj@redhat.com>
authorSergio Durigan Junior <sergiodj@redhat.com>
Tue, 25 Dec 2012 17:27:49 +0000 (17:27 +0000)
committerSergio Durigan Junior <sergiodj@redhat.com>
Tue, 25 Dec 2012 17:27:49 +0000 (17:27 +0000)
* frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Fix typo.

gdb/ChangeLog
gdb/frv-linux-tdep.c

index 6f22130..d5d208b 100644 (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
index dd41883..4c0c0df 100644 (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;