]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
INSTR_NOT_* output to opC not opB...
authorWolfgang Bumiller <wolfgang.linux@bumiller.com>
Thu, 26 Jul 2012 20:11:46 +0000 (22:11 +0200)
committerWolfgang Bumiller <wolfgang.linux@bumiller.com>
Thu, 26 Jul 2012 20:11:46 +0000 (22:11 +0200)
ir.c

diff --git a/ir.c b/ir.c
index 7508f908ea23d4ba1de8ef6fe91dc31654195182..f32f9d49492c2ae3efa4b58ec3d3df44e78a42f0 100644 (file)
--- 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;