diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-09-17 13:42:41 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-07-04 16:01:16 +0200 |
commit | f0d14a95a5833885e0940bb650e15d8e959d0d45 (patch) | |
tree | a8d404b74da6223cdfcde3b413f954e77772fc65 /monitor.c | |
parent | 8e2b72990e9dc80ab3ff19717f45fec839bbcbc2 (diff) | |
download | qemu-f0d14a95a5833885e0940bb650e15d8e959d0d45.zip |
monitor: disable "info jit" and "info opcount" if !TCG
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1098,6 +1098,7 @@ static void hmp_info_registers(Monitor *mon, const QDict *qdict) } } +#ifdef CONFIG_TCG static void hmp_info_jit(Monitor *mon, const QDict *qdict) { if (!tcg_enabled()) { @@ -1113,6 +1114,7 @@ static void hmp_info_opcount(Monitor *mon, const QDict *qdict) { dump_opcount_info((FILE *)mon, monitor_fprintf); } +#endif static void hmp_info_history(Monitor *mon, const QDict *qdict) { |