From 2fdb45f57700891252cd36c34dce870f81e1f4ad Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Tue, 1 Sep 2009 14:29:29 +0200 Subject: [PATCH] fix ambiguity Signed-off-by: aldot --- i386-asm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i386-asm.c b/i386-asm.c index 9ac1a5c..891943e 100644 --- a/i386-asm.c +++ b/i386-asm.c @@ -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; }