monitor: disable "info jit" and "info opcount" if !TCG
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
index ba98e58..07500ef 100644
--- a/hmp-commands-info.hx
+++ b/hmp-commands-info.hx
@@ -261,6 +261,7 @@
Show memory tree.
ETEXI
+#if defined(CONFIG_TCG)
{
.name = "jit",
.args_type = "",
@@ -268,6 +269,7 @@
.help = "show dynamic compiler info",
.cmd = hmp_info_jit,
},
+#endif
STEXI
@item info jit
@@ -275,6 +277,7 @@
Show dynamic compiler info.
ETEXI
+#if defined(CONFIG_TCG)
{
.name = "opcount",
.args_type = "",
@@ -282,6 +285,7 @@
.help = "show dynamic compiler opcode counters",
.cmd = hmp_info_opcount,
},
+#endif
STEXI
@item info opcount