From b4225ea98ae6a3fd1178035cffaedae308c2981c Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 26 Jul 2012 22:11:46 +0200 Subject: [PATCH] INSTR_NOT_* output to opC not opB... --- ir.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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; -- 2.39.2