nvc0/ir: emit FMZ flag when requested on FFMA

Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
Ilia Mirkin
2017-01-15 12:15:06 -05:00
parent c9b74f3f03
commit dd39e48726
@@ -537,6 +537,10 @@ CodeEmitterNVC0::emitFMAD(const Instruction *i)
if (i->saturate)
code[0] |= 1 << 5;
if (i->dnz)
code[0] |= 1 << 7;
else
if (i->ftz)
code[0] |= 1 << 6;
} else {