diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-02-25 11:46:56 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-02-25 11:46:56 -0800 |
commit | 9898c80cb1d9e8c26aa4f1a71b4eb9772e4d2f1a (patch) | |
tree | 42828604be90a088bc0414b834210ab86d094d12 /disasm.c | |
parent | 755f5214b7a4c2d05e9750456bd2316a5f21305b (diff) | |
download | nasm-9898c80cb1d9e8c26aa4f1a71b4eb9772e4d2f1a.tar.gz nasm-9898c80cb1d9e8c26aa4f1a71b4eb9772e4d2f1a.tar.bz2 nasm-9898c80cb1d9e8c26aa4f1a71b4eb9772e4d2f1a.zip |
disasm: ignore opcodes 370 and 371
Diffstat (limited to 'disasm.c')
-rw-r--r-- | disasm.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,6 @@ /* ----------------------------------------------------------------------- * * - * Copyright 1996-2010 The NASM Authors - All Rights Reserved + * Copyright 1996-2012 The NASM Authors - All Rights Reserved * See the file AUTHORS included with the NASM distribution for * the specific copyright holders. * @@ -913,6 +913,10 @@ static int matches(const struct itemplate *t, uint8_t *data, a_used = true; break; + case 0370: + case 0371: + break; + case 0374: eat = EA_XMMVSIB; break; |