mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
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:
@@ -407,6 +407,7 @@ m32r_trap (SIM_CPU *current_cpu, PCADDR pc, int num)
|
||||
errcode = EINVAL;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case TARGET_LINUX_SYS_sync:
|
||||
sync ();
|
||||
|
||||
Reference in New Issue
Block a user