diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-05-21 14:16:49 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-05-21 14:16:49 -0700 |
commit | 9d5d239a9db88df81c8485dcdf7b0caa3cad0f5d (patch) | |
tree | 837970d81980dd2d3070f1c88b93921b28475b6b /insns.pl | |
parent | bce9da223f98c02417f860b5873b12d91442bb22 (diff) | |
download | nasm-9d5d239a9db88df81c8485dcdf7b0caa3cad0f5d.tar.gz nasm-9d5d239a9db88df81c8485dcdf7b0caa3cad0f5d.tar.bz2 nasm-9d5d239a9db88df81c8485dcdf7b0caa3cad0f5d.zip |
Use "o64nw" instead of "o64i" for o64 without REX.W
Use the somewhat more mnemonic "o64nw" for 64-bit operand size sans
REX.W.
Diffstat (limited to 'insns.pl')
-rw-r--r-- | insns.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -571,7 +571,7 @@ sub byte_code_compile($) { push(@codes, 0321); } elsif ($op eq 'o64') { # 64-bit operand size requiring REX.W push(@codes, 0324); - } elsif ($op eq 'o64i') { # Implied 64-bit operand size (no REX.W) + } elsif ($op eq 'o64nw') { # Implied 64-bit operand size (no REX.W) push(@codes, 0323); } elsif ($op eq 'a16') { push(@codes, 0310); |