mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-18 16:53:50 +08:00
* mips-tdep.c (mips32_next_pc): Fix a typo in BGTZL.
This commit is contained in:
@ -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>
|
2007-10-08 Markus Deuling <deuling@de.ibm.com>
|
||||||
|
|
||||||
* aix-thread.c (supply_gprs64, supply_fprs, supply_sprs64)
|
* aix-thread.c (supply_gprs64, supply_fprs, supply_sprs64)
|
||||||
|
@ -1011,7 +1011,7 @@ mips32_next_pc (struct frame_info *frame, CORE_ADDR pc)
|
|||||||
goto neq_branch;
|
goto neq_branch;
|
||||||
case 2: /* BLEZL */
|
case 2: /* BLEZL */
|
||||||
goto less_branch;
|
goto less_branch;
|
||||||
case 3: /* BGTZ */
|
case 3: /* BGTZL */
|
||||||
goto greater_branch;
|
goto greater_branch;
|
||||||
default:
|
default:
|
||||||
pc += 4;
|
pc += 4;
|
||||||
|
Reference in New Issue
Block a user