From 9d5d239a9db88df81c8485dcdf7b0caa3cad0f5d Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 21 May 2008 14:16:49 -0700 Subject: [PATCH] Use "o64nw" instead of "o64i" for o64 without REX.W Use the somewhat more mnemonic "o64nw" for 64-bit operand size sans REX.W. --- insns.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.11.4.GIT