mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
* rx.c (decode_opcode: RXO_int): Only break out of the emulation
loop if rx_syscall() does not return a RX_STEPPED result.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2010-09-29 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* rx.c (decode_opcode: RXO_int): Only break out of the emulation
|
||||
loop if rx_syscall() does not return a RX_STEPPED result.
|
||||
|
||||
2010-09-23 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* rx.c (decode_opcode): Add cycle information for RXO_smovu.
|
||||
|
||||
@@ -1232,7 +1232,9 @@ decode_opcode ()
|
||||
v = GS ();
|
||||
if (v == 255)
|
||||
{
|
||||
DO_RETURN (rx_syscall (regs.r[5]));
|
||||
int rc = rx_syscall (regs.r[5]);
|
||||
if (! RX_STEPPED (rc))
|
||||
DO_RETURN (rc);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user