[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-stable] [PATCH 32/37] target-unicore32: Catch attempt to instantia
From: |
Andreas Färber |
Subject: |
[Qemu-stable] [PATCH 32/37] target-unicore32: Catch attempt to instantiate abstract type in cpu_init() |
Date: |
Mon, 28 Jan 2013 17:18:49 +0100 |
Fixes -cpu unicore32-cpu asserting.
Cc: address@hidden
Signed-off-by: Andreas Färber <address@hidden>
---
target-unicore32/cpu.c | 3 ++-
1 Datei geändert, 2 Zeilen hinzugefügt(+), 1 Zeile entfernt(-)
diff --git a/target-unicore32/cpu.c b/target-unicore32/cpu.c
index 9239d49..6735b25 100644
--- a/target-unicore32/cpu.c
+++ b/target-unicore32/cpu.c
@@ -31,7 +31,8 @@ static ObjectClass *uc32_cpu_class_by_name(const char
*cpu_model)
}
oc = object_class_by_name(cpu_model);
- if (oc != NULL && !object_class_dynamic_cast(oc, TYPE_UNICORE32_CPU)) {
+ if (oc != NULL && (!object_class_dynamic_cast(oc, TYPE_UNICORE32_CPU) ||
+ object_class_is_abstract(oc))) {
oc = NULL;
}
return oc;
--
1.7.10.4
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemu-stable] [PATCH 32/37] target-unicore32: Catch attempt to instantiate abstract type in cpu_init(),
Andreas Färber <=