summaryrefslogtreecommitdiff
path: root/assemble.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-09-25 15:41:19 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-09-25 15:41:19 -0700
commit457afd4dad2274c866ab38eabd8508f2d56bd2ee (patch)
tree26d930fbbd489b24ecdd9e92a2e779ddf18eafc7 /assemble.c
parentc58642fbbaa88ccf5316dbe393dc87275da21b51 (diff)
downloadnasm-457afd4dad2274c866ab38eabd8508f2d56bd2ee.tar.gz
nasm-457afd4dad2274c866ab38eabd8508f2d56bd2ee.tar.bz2
nasm-457afd4dad2274c866ab38eabd8508f2d56bd2ee.zip
assemble.c: clean up whitespace
Remove stray whitespace
Diffstat (limited to 'assemble.c')
-rw-r--r--assemble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/assemble.c b/assemble.c
index 89c0210..4d56a65 100644
--- a/assemble.c
+++ b/assemble.c
@@ -1698,7 +1698,7 @@ static int matches(const struct itemplate *itemp, insn * instruction, int bits)
if (instruction->oprs[i].type != instruction->oprs[j].type ||
instruction->oprs[i].basereg != instruction->oprs[j].basereg)
return 0;
- } else if (itemp->opd[i] & ~instruction->oprs[i].type ||
+ } else if (itemp->opd[i] & ~instruction->oprs[i].type ||
((itemp->opd[i] & SIZE_MASK) &&
((itemp->opd[i] ^ instruction->oprs[i].type) & SIZE_MASK))) {
if ((itemp->opd[i] & ~instruction->oprs[i].type & ~SIZE_MASK) ||