1
0
mirror of https://github.com/mirror/tinycc.git synced 2025-04-03 12:40:08 +08:00

fix ambiguity

Signed-off-by: aldot <rep.dot.nop@gmail.com>
This commit is contained in:
Bernhard Reutner-Fischer 2009-09-01 14:29:29 +02:00 committed by grischka
parent 3065e70630
commit 2fdb45f577

View File

@ -653,7 +653,7 @@ static void asm_opcode(TCCState *s1, int opcode)
if (ops[i].type & OP_REG32) {
if (s1->seg_size == 16)
o32 = 1;
} else if (!ops[i].type & OP_REG32) {
} else if (!(ops[i].type & OP_REG32)) {
if (s1->seg_size == 32)
o32 = 1;
}