target/i386/cpu: avoid shadowed local variables
Reuse the pointer variable used for the unversioned model. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
e0c3ef715b
commit
637123a213
@ -5976,9 +5976,10 @@ static void x86_register_cpudef_types(const X86CPUDefinition *def)
|
||||
/* Versioned models: */
|
||||
|
||||
for (vdef = x86_cpu_def_get_versions(def); vdef->version; vdef++) {
|
||||
X86CPUModel *m = g_new0(X86CPUModel, 1);
|
||||
g_autofree char *name =
|
||||
x86_cpu_versioned_model_name(def, vdef->version);
|
||||
|
||||
m = g_new0(X86CPUModel, 1);
|
||||
m->cpudef = def;
|
||||
m->version = vdef->version;
|
||||
m->note = vdef->note;
|
||||
|
Loading…
Reference in New Issue
Block a user