diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2010-11-23 20:21:45 +0300 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2010-11-23 20:21:45 +0300 |
commit | b8470a470857bc6ead816ecd0543b5c76467d913 (patch) | |
tree | 5c205347de190799f1247c7e641c8c204a400189 /insns.pl | |
parent | dc7574599487e6d73267cef65bb60a52289ac47d (diff) | |
download | nasm-b8470a470857bc6ead816ecd0543b5c76467d913.tar.gz nasm-b8470a470857bc6ead816ecd0543b5c76467d913.tar.bz2 nasm-b8470a470857bc6ead816ecd0543b5c76467d913.zip |
insns.pl: Fix up merge conflict for sure
Now it should be fixed in real (one code snipped
escaped me during merge conflict resolving).
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'insns.pl')
-rwxr-xr-x | insns.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -442,7 +442,7 @@ sub format_insn($$$$$) { if ($opp =~ /^(.*[^\d])(8|16|32|64|80|128|256)$/) { my $ox = $1; my $on = $2; - if ($ox !~ /^sbyte$/) { + if ($ox !~ /^(sbyte|sdword|udword)$/) { $opp = $ox; push(@oppx, "bits$on"); } |