diff options
author | Thomas Huth | 2022-03-15 15:41:07 +0100 |
---|---|---|
committer | Richard Henderson | 2022-04-20 21:12:47 +0200 |
commit | 55d71e0b784e03dbd15bc13d75af88ed5340fde8 (patch) | |
tree | 30849f01429c18b9e4e035589987f0387c8ea632 /monitor | |
parent | Merge tag 'pull-fixes-for-7.1-200422-1' of https://github.com/stsquad/qemu in... (diff) | |
download | qemu-55d71e0b784e03dbd15bc13d75af88ed5340fde8.tar.gz qemu-55d71e0b784e03dbd15bc13d75af88ed5340fde8.tar.xz qemu-55d71e0b784e03dbd15bc13d75af88ed5340fde8.zip |
Don't include sysemu/tcg.h if it is not necessary
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>
Diffstat (limited to 'monitor')
-rw-r--r-- | monitor/misc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/monitor/misc.c b/monitor/misc.c index b0fc0e5843..ebd49e13b6 100644 --- a/monitor/misc.c +++ b/monitor/misc.c @@ -48,7 +48,6 @@ #include "qapi/util.h" #include "sysemu/blockdev.h" #include "sysemu/sysemu.h" -#include "sysemu/tcg.h" #include "sysemu/tpm.h" #include "qapi/qmp/qdict.h" #include "qapi/qmp/qerror.h" |