From: Ilia Mirkin Date: Sat, 10 May 2014 19:02:36 +0000 (-0400) Subject: nv50/ir: make sure to reverse cond codes on all the OP_SET variants X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=68f47cad0d23281309741cc47eeaa26ebbb41bca;p=mesa.git nv50/ir: make sure to reverse cond codes on all the OP_SET variants Signed-off-by: Ilia Mirkin Reviewed-by: Ben Skeggs Cc: "10.2 10.1" --- diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp index c89e1c34e2b..cdae3c8c2ba 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp @@ -187,7 +187,8 @@ LoadPropagation::checkSwapSrc01(Instruction *insn) return; } - if (insn->op == OP_SET) + if (insn->op == OP_SET || insn->op == OP_SET_AND || + insn->op == OP_SET_OR || insn->op == OP_SET_XOR) insn->asCmp()->setCond = reverseCondCode(insn->asCmp()->setCond); else if (insn->op == OP_SLCT)