From 2dddbc2123681f0cc37a891fa61d97a88d5e641c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20F=C3=A4rber?= Date: Sun, 27 Jan 2013 19:31:00 +0100 Subject: [PATCH] target-m68k: Use type_register() instead of type_register_static() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit According to its documentation, type_register_static()'s TypeInfo argument should exist for the life type of the type. Therefore use type_register() when registering the list of CPU subtypes. No functional change with the current implementation. Cf. 918fd0839eeafc83bd4984364321a947d29041fe for arm. Signed-off-by: Andreas Färber --- target-m68k/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-m68k/cpu.c b/target-m68k/cpu.c index e6df1eef5..5c7803181 100644 --- a/target-m68k/cpu.c +++ b/target-m68k/cpu.c @@ -162,7 +162,7 @@ static void register_cpu_type(const M68kCPUInfo *info) .instance_init = info->instance_init, }; - type_register_static(&type_info); + type_register(&type_info); } static const TypeInfo m68k_cpu_type_info = { -- 2.39.2