summaryrefslogtreecommitdiff
path: root/insns.pl
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-05-21 14:16:49 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-05-21 14:16:49 -0700
commit9d5d239a9db88df81c8485dcdf7b0caa3cad0f5d (patch)
tree837970d81980dd2d3070f1c88b93921b28475b6b /insns.pl
parentbce9da223f98c02417f860b5873b12d91442bb22 (diff)
downloadnasm-9d5d239a9db88df81c8485dcdf7b0caa3cad0f5d.tar.gz
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.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/insns.pl b/insns.pl
index 604e2e8c..b6076675 100644
--- a/insns.pl
+++ b/insns.pl
@@ -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);