From eb29cf7b31e097237bab41759ecdbe1ed4c7e45d Mon Sep 17 00:00:00 2001 From: Jin Kyu Song Date: Mon, 5 May 2014 13:06:03 -0700 Subject: [PATCH] AVX512: Remove invalid error checking An offset-only memref can also have an opmask decorator. e.g.) vmovdqu32 [0xabcd]{k1}, zmm0 Signed-off-by: Jin Kyu Song --- assemble.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/assemble.c b/assemble.c index ff927227..e9cd70f8 100644 --- a/assemble.c +++ b/assemble.c @@ -1997,9 +1997,6 @@ static int op_evexflags(const operand * o, int mask, uint8_t byte) { int val; - if (!is_register(o->basereg)) - errfunc(ERR_PANIC, "invalid operand passed to op_evexflags()"); - val = nasm_regvals[o->basereg]; return evexflags(val, o->decoflags, mask, byte);