mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 09:38:57 +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:
@@ -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