From 6de9520685215edbe1eb793ac38e8f0c3792a611 Mon Sep 17 00:00:00 2001 From: John Detter Date: Wed, 14 Dec 2016 12:09:41 -0600 Subject: [PATCH] Suppressed debug output --- common/src/arch-x86.C | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/arch-x86.C b/common/src/arch-x86.C index ab2ec9c57e..599a2e911c 100644 --- a/common/src/arch-x86.C +++ b/common/src/arch-x86.C @@ -8293,7 +8293,9 @@ ia32_instruction& ia32_decode(unsigned int capa, const unsigned char* addr, ia32 /* First decode any prefixes for this instruction */ if (!ia32_decode_prefixes(addr, instruct)) { +#ifdef VEX_DEBUG fprintf(stderr, "PREFIX DECODE FAILURE\n"); +#endif instruct.size = 1; instruct.entry = NULL; instruct.legacy_type = ILLEGAL;