From: Wolfgang Bumiller Date: Thu, 26 Jul 2012 20:11:46 +0000 (+0200) Subject: INSTR_NOT_* output to opC not opB... X-Git-Tag: 0.1-rc1~396^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b4225ea98ae6a3fd1178035cffaedae308c2981c;p=xonotic%2Fgmqcc.git INSTR_NOT_* output to opC not opB... --- diff --git a/ir.c b/ir.c index 7508f90..f32f9d4 100644 --- a/ir.c +++ b/ir.c @@ -2287,10 +2287,8 @@ tailcall: stmt.o1.u1 = stmt.o3.u1; stmt.o3.u1 = 0; } - else if ((stmt.opcode >= INSTR_STORE_F && - stmt.opcode <= INSTR_STORE_FNC) || - (stmt.opcode >= INSTR_NOT_F && - stmt.opcode <= INSTR_NOT_FNC)) + else if (stmt.opcode >= INSTR_STORE_F && + stmt.opcode <= INSTR_STORE_FNC) { /* 2-operand instructions with A -> B */ stmt.o2.u1 = stmt.o3.u1;