From: Ilia Mirkin Date: Sat, 7 Jun 2014 20:37:57 +0000 (-0400) Subject: gk110/ir: fix bfind emission X-Git-Tag: upstream/10.3~1673 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd7dd3ed06ea9e88a9f6e18f45338bd99fde86f1;p=platform%2Fupstream%2Fmesa.git gk110/ir: fix bfind emission There is a short-immediate version as well, but it should never end up getting used since it would have gotten folded earlier. Signed-off-by: Ilia Mirkin Cc: "10.2" --- 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 bc77bd8..75b3da2 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp @@ -713,7 +713,7 @@ CodeEmitterGK110::emitEXTBF(const Instruction *i) void CodeEmitterGK110::emitBFIND(const Instruction *i) { - emitForm_21(i, 0x618, 0xc18); + emitForm_C(i, 0x218, 0x2); if (i->dType == TYPE_S32) code[1] |= 0x80000;