* mips-tdep.c (mips32_next_pc): Fix a typo in BGTZL.

This commit is contained in:
Maciej W. Rozycki 2007-10-08 13:15:00 +00:00
parent c7f30c7a20
commit 313628ccba
2 changed files with 5 additions and 1 deletions

View 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)

View 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;