55d71e0b78
This header only defines the tcg_allowed variable and the tcg_enabled() function - which are not required in many files that include this header. Drop the #include statement there. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20220315144107.1012530-1-thuth@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
15 lines
371 B
C
15 lines
371 B
C
#include "qemu/osdep.h"
|
|
#include "qemu/error-report.h"
|
|
#include "qapi/error.h"
|
|
#include "qapi/qapi-commands-machine.h"
|
|
#include "exec/exec-all.h"
|
|
#include "monitor/monitor.h"
|
|
|
|
static void hmp_tcg_register(void)
|
|
{
|
|
monitor_register_hmp_info_hrt("jit", qmp_x_query_jit);
|
|
monitor_register_hmp_info_hrt("opcount", qmp_x_query_opcount);
|
|
}
|
|
|
|
type_init(hmp_tcg_register);
|