]>
Commit | Line | Data |
---|---|---|
0031e0d6 DH |
1 | #include "qemu/osdep.h" |
2 | #include "qemu-common.h" | |
3 | #include "sysemu/arch_init.h" | |
e688df6b | 4 | #include "qapi/error.h" |
0031e0d6 DH |
5 | #include "qapi/qmp/qerror.h" |
6 | ||
7 | CpuModelCompareInfo *arch_query_cpu_model_comparison(CpuModelInfo *modela, | |
8 | CpuModelInfo *modelb, | |
9 | Error **errp) | |
10 | { | |
11 | error_setg(errp, QERR_UNSUPPORTED); | |
12 | return NULL; | |
13 | } |