diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-09-25 15:41:19 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-09-25 15:41:19 -0700 |
commit | 457afd4dad2274c866ab38eabd8508f2d56bd2ee (patch) | |
tree | 26d930fbbd489b24ecdd9e92a2e779ddf18eafc7 /assemble.c | |
parent | c58642fbbaa88ccf5316dbe393dc87275da21b51 (diff) | |
download | nasm-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) || |