sim: m32r: fix missing break statement

The ftime syscall should not fallthrough to the sync syscall.
Clearly the code was missing a break statement.
This commit is contained in:
Mike Frysinger 2024-01-10 22:02:48 -05:00
parent b1f974faeb
commit dbd4aebe5b

View File

@ -407,6 +407,7 @@ m32r_trap (SIM_CPU *current_cpu, PCADDR pc, int num)
errcode = EINVAL; errcode = EINVAL;
} }
} }
break;
case TARGET_LINUX_SYS_sync: case TARGET_LINUX_SYS_sync:
sync (); sync ();