From 9871cb414c968f1e858c5d1b3e7bd1893f471d3c Mon Sep 17 00:00:00 2001 From: flobernd Date: Thu, 19 Oct 2017 15:13:09 +0200 Subject: [PATCH] Minor bugfixes --- src/Decoder.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Decoder.c b/src/Decoder.c index a64c59a..414f924 100644 --- a/src/Decoder.c +++ b/src/Decoder.c @@ -2361,6 +2361,9 @@ static void ZydisSetAVXInformation(ZydisDecoderContext* context, case ZYDIS_IELEMENT_SIZE_64: context->evex.elementSize = 64; break; + case ZYDIS_IELEMENT_SIZE_128: + context->evex.elementSize = 128; + break; default: ZYDIS_UNREACHABLE; }