gm107/ir: add dnz emission for fmul
authorIlia Mirkin <imirkin@alum.mit.edu>
Sun, 28 Sep 2014 05:52:11 +0000 (01:52 -0400)
committerIlia Mirkin <imirkin@alum.mit.edu>
Sat, 4 Oct 2014 00:37:59 +0000 (20:37 -0400)
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: "10.3" <mesa-stable@lists.freedesktop.org>
src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp

index bafb9cab7ca286e1d538886ef7673bb66ebd8a10..944ceb2d05663ac64752cd904648d47e62580839 100644 (file)
@@ -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