with "sh4: simplify superh_cpu_class_by_name()" no longer accepts type names as cpu_model but linux-useri/main.c still uses type name as default, fix it up and use cpu_model instead
Signed-off-by: Igor Mammedov <[email protected]> --- CC: Philippe Mathieu-Daudé <[email protected]> CC: Eduardo Habkost <[email protected]> CC: [email protected] --- linux-user/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-user/main.c b/linux-user/main.c index 829f974..d3fde19 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -4312,7 +4312,7 @@ int main(int argc, char **argv, char **envp) cpu_model = "750"; # endif #elif defined TARGET_SH4 - cpu_model = TYPE_SH7785_CPU; + cpu_model = "sh7785"; #elif defined TARGET_S390X cpu_model = "qemu"; #else -- 2.7.4
