5753605412
The fallback code in cpu_loop_exit_sigsegv is sufficient for cris linux-user. Remove the code from cpu_loop that handled the unnamed 0xaa exception. This makes all of the code in helper.c sysemu only, so remove the ifdefs and move the file to cris_softmmu_ss. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
18 lines
296 B
Meson
18 lines
296 B
Meson
cris_ss = ss.source_set()
|
|
cris_ss.add(files(
|
|
'cpu.c',
|
|
'gdbstub.c',
|
|
'op_helper.c',
|
|
'translate.c',
|
|
))
|
|
|
|
cris_softmmu_ss = ss.source_set()
|
|
cris_softmmu_ss.add(files(
|
|
'helper.c',
|
|
'machine.c',
|
|
'mmu.c',
|
|
))
|
|
|
|
target_arch += {'cris': cris_ss}
|
|
target_softmmu_arch += {'cris': cris_softmmu_ss}
|