Reviewed-by: Ilia Mirkin <[email protected]>
On Wed, Apr 20, 2016 at 1:06 PM, Samuel Pitoiset <[email protected]> wrote: > Signed-off-by: Samuel Pitoiset <[email protected]> > Cc: "11.1 11.2" <[email protected]> > --- > src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > 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 59e5c83..f69567a 100644 > --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp > +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp > @@ -612,7 +612,7 @@ CodeEmitterGK110::emitIMUL(const Instruction *i) > assert(!i->src(0).mod.neg() && !i->src(1).mod.neg()); > assert(!i->src(0).mod.abs() && !i->src(1).mod.abs()); > > - if (isLIMM(i->src(1), TYPE_S32)) { > + if (i->src(1).getFile() == FILE_IMMEDIATE) { > emitForm_L(i, 0x280, 2, Modifier(0)); > > if (i->subOp == NV50_IR_SUBOP_MUL_HIGH) > -- > 2.8.0 > > _______________________________________________ > mesa-dev mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
