Module: Mesa Branch: 10.3 Commit: e3e68a36db7b8804155fc4dfe34508143532fcda URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e3e68a36db7b8804155fc4dfe34508143532fcda
Author: Ilia Mirkin <[email protected]> Date: Sun Sep 28 01:52:11 2014 -0400 gm107/ir: add dnz emission for fmul Signed-off-by: Ilia Mirkin <[email protected]> Cc: "10.3" <[email protected]> (cherry picked from commit d58037ccf5f362cabecb09bd4874db52629bbd71) --- src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp index bafb9ca..944ceb2 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp @@ -432,7 +432,7 @@ CodeEmitterGM107::emitNEG2(int pos, const ValueRef &a, const ValueRef &b) void CodeEmitterGM107::emitFMZ(int pos, int len) { - emitField(pos, len, /*XXX: insn->dnz << 1 | */ insn->ftz); + emitField(pos, len, insn->dnz << 1 | insn->ftz); } void _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
