From: Samuel Pitoiset Date: Sun, 28 Feb 2016 21:38:43 +0000 (+0100) Subject: gk110/ir: fix wrong emission of BAR.SYNC X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cba89fdaa1e7360808cef0f6871930c90ca3ef4d;p=mesa.git gk110/ir: fix wrong emission of BAR.SYNC Signed-off-by: Samuel Pitoiset Reviewed-by: Ilia Mirkin --- diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp index 8512d0d415f..0e7a23709d3 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp @@ -1273,7 +1273,6 @@ CodeEmitterGK110::emitBAR(const Instruction *i) case NV50_IR_SUBOP_BAR_RED_OR: code[1] |= 0x90; break; case NV50_IR_SUBOP_BAR_RED_POPC: code[1] |= 0x10; break; default: - code[1] |= 0x20; assert(i->subOp == NV50_IR_SUBOP_BAR_SYNC); break; }