]> git.proxmox.com Git - mirror_qemu.git/blob - accel/tcg/hmp.c
Don't include sysemu/tcg.h if it is not necessary
[mirror_qemu.git] / accel / tcg / hmp.c
1 #include "qemu/osdep.h"
2 #include "qemu/error-report.h"
3 #include "qapi/error.h"
4 #include "qapi/qapi-commands-machine.h"
5 #include "exec/exec-all.h"
6 #include "monitor/monitor.h"
7
8 static void hmp_tcg_register(void)
9 {
10 monitor_register_hmp_info_hrt("jit", qmp_x_query_jit);
11 monitor_register_hmp_info_hrt("opcount", qmp_x_query_opcount);
12 }
13
14 type_init(hmp_tcg_register);