OSDN Git Service

* mips-tdep.c (mips32_next_pc): Fix a typo in BGTZL.
authorMaciej W. Rozycki <macro@linux-mips.org>
Mon, 8 Oct 2007 13:15:00 +0000 (13:15 +0000)
committerMaciej W. Rozycki <macro@linux-mips.org>
Mon, 8 Oct 2007 13:15:00 +0000 (13:15 +0000)
gdb/ChangeLog
gdb/mips-tdep.c

index 758ecd2..df6b352 100644 (file)
@@ -1,3 +1,7 @@
+2007-10-08  Maciej W. Rozycki  <macro@mips.com>
+
+       * mips-tdep.c (mips32_next_pc): Fix a typo in BGTZL.
+
 2007-10-08  Markus Deuling  <deuling@de.ibm.com>
 
        * aix-thread.c (supply_gprs64, supply_fprs, supply_sprs64)
index 85b118b..60b8478 100644 (file)
@@ -1011,7 +1011,7 @@ mips32_next_pc (struct frame_info *frame, CORE_ADDR pc)
              goto neq_branch;
            case 2:             /* BLEZL */
              goto less_branch;
-           case 3:             /* BGTZ */
+           case 3:             /* BGTZL */
              goto greater_branch;
            default:
              pc += 4;