diff options
author | Ben Rudiak-Gould <benrudiak@gmail.com> | 2013-03-10 21:46:12 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2013-03-10 21:46:12 +0400 |
commit | 94ba02fa16593ac1c6f0a99edce551b79f66e03b (patch) | |
tree | d0949bbb7cf5dbe577e64ee4a377b76682b0f2d5 /disasm.c | |
parent | 6e87893f068f59929cb2d6dcc50ac1a1da2f602c (diff) | |
download | nasm-94ba02fa16593ac1c6f0a99edce551b79f66e03b.tar.gz nasm-94ba02fa16593ac1c6f0a99edce551b79f66e03b.tar.bz2 nasm-94ba02fa16593ac1c6f0a99edce551b79f66e03b.zip |
Make F2 and F3 SSE prefixes override 66
According to XED and experimentation, the 66 is ignored.
Signed-off-by: Ben Rudiak-Gould <benrudiak@gmail.com>
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'disasm.c')
-rw-r--r-- | disasm.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -834,18 +834,6 @@ static int matches(const struct itemplate *t, uint8_t *data, o_used = true; break; - case 0362: - if (prefix->osp || prefix->rep != 0xf2) - return false; - drep = 0; - break; - - case 0363: - if (prefix->osp || prefix->rep != 0xf3) - return false; - drep = 0; - break; - case 0364: if (prefix->osp) return false; |