0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-10-10 00:25:06 -04:00

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 <jin.kyu.song@intel.com>
This commit is contained in:
Jin Kyu Song
2014-05-05 13:06:03 -07:00
parent 1179a67a8e
commit eb29cf7b31

View File

@@ -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);