diff options
author | Roman Bolshakov | 2018-12-03 11:04:15 +0100 |
---|---|---|
committer | Laurent Vivier | 2018-12-18 14:57:48 +0100 |
commit | bcdc5081901e172a4b7c5ecc2faa2d4eae1f67a9 (patch) | |
tree | e36214ad8e0d573f697e73f3806e06133f74aa21 /target/i386/hvf | |
parent | docs/devel/build-system: fix 'softmu' typo (diff) | |
download | qemu-bcdc5081901e172a4b7c5ecc2faa2d4eae1f67a9.tar.gz qemu-bcdc5081901e172a4b7c5ecc2faa2d4eae1f67a9.tar.xz qemu-bcdc5081901e172a4b7c5ecc2faa2d4eae1f67a9.zip |
i386: hvf: drop debug printf in decode_sldtgroup
It's going to clutter QEMU logs if 0x0f00 is trapped.
Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>
Message-Id: <20181203100415.53027-2-r.bolshakov@yadro.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'target/i386/hvf')
-rw-r--r-- | target/i386/hvf/x86_decode.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/i386/hvf/x86_decode.c b/target/i386/hvf/x86_decode.c index d125a6ef83..5f513c5563 100644 --- a/target/i386/hvf/x86_decode.c +++ b/target/i386/hvf/x86_decode.c @@ -525,8 +525,6 @@ static void decode_sldtgroup(CPUX86State *env, struct x86_decode *decode) X86_DECODE_CMD_INVL }; decode->cmd = group[decode->modrm.reg]; - printf("%llx: decode_sldtgroup: %d\n", env->hvf_emul->fetch_rip, - decode->modrm.reg); } static void decode_lidtgroup(CPUX86State *env, struct x86_decode *decode) |