Commit 87fb5811 authored by Andreas Färber's avatar Andreas Färber
Browse files

target-unicore32: Use type_register() instead of type_register_static()



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. 918fd083 for arm.

Signed-off-by: default avatarAndreas Färber <afaerber@suse.de>
parent a1ebd6ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ static void uc32_register_cpu_type(const UniCore32CPUInfo *info)
        .instance_init = info->instance_init,
    };

    type_register_static(&type_info);
    type_register(&type_info);
}

static const TypeInfo uc32_cpu_type_info = {