From: H. Peter Anvin Date: Sat, 25 Feb 2012 19:46:56 +0000 (-0800) Subject: disasm: ignore opcodes 370 and 371 X-Git-Tag: nasm-2.11.05~304 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9898c80cb1d9e8c26aa4f1a71b4eb9772e4d2f1a;p=platform%2Fupstream%2Fnasm.git disasm: ignore opcodes 370 and 371 --- diff --git a/disasm.c b/disasm.c index 9090bdd..ba4b8d2 100644 --- a/disasm.c +++ b/disasm.c @@ -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;