diff options
author | Ilia Mirkin <[email protected]> | 2014-06-07 16:37:57 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-06-07 16:39:19 -0400 |
commit | bd7dd3ed06ea9e88a9f6e18f45338bd99fde86f1 (patch) | |
tree | ce84d8696d1ddf3b53b10e2166c2ad96d23c852b /src/gallium/drivers/nouveau | |
parent | 40500ebb2048cc214e02977157a1b02f0875e23b (diff) |
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 <[email protected]>
Cc: "10.2" <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 bc77bd8c07a..75b3da2697f 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; |