Commit-ID: eb29cf7b31e097237bab41759ecdbe1ed4c7e45d
Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=eb29cf7b31e097237bab41759ecdbe1ed4c7e45d
Author: Jin Kyu Song <jin...@in...>
AuthorDate: Mon, 5 May 2014 13:06:03 -0700
Committer: Jin Kyu Song <jin...@in...>
CommitDate: Mon, 5 May 2014 13:56:36 -0700
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...@in...>
---
assemble.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/assemble.c b/assemble.c
index ff92722..e9cd70f 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);
|