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