gm107/ir: add dnz emission for fmul

Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: "10.3" <mesa-stable@lists.freedesktop.org>
(cherry picked from commit d58037ccf5)
This commit is contained in:
Ilia Mirkin 2014-09-28 01:52:11 -04:00 committed by Emil Velikov
parent 745a0bfd62
commit e3e68a36db

View 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