Mesa (master): i965: Fix disassembled names of BFI1 and BFI2 instructions.

Matt Turner mattst88 at kemper.freedesktop.org
Wed Nov 20 23:05:29 UTC 2013


Module: Mesa
Branch: master
Commit: 82bfb45e24c7a19031a19ad1d361c07dd3da4987
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=82bfb45e24c7a19031a19ad1d361c07dd3da4987

Author: Matt Turner <mattst88 at gmail.com>
Date:   Sat Nov 16 13:03:55 2013 -0800

i965: Fix disassembled names of BFI1 and BFI2 instructions.

Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/drivers/dri/i965/brw_disasm.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c
index 22b37d7..128e717 100644
--- a/src/mesa/drivers/dri/i965/brw_disasm.c
+++ b/src/mesa/drivers/dri/i965/brw_disasm.c
@@ -75,8 +75,8 @@ const struct opcode_desc opcode_descs[128] = {
     [BRW_OPCODE_CMP] = { .name = "cmp", .nsrc = 2, .ndst = 1 },
     [BRW_OPCODE_CMPN] = { .name = "cmpn", .nsrc = 2, .ndst = 1 },
     [BRW_OPCODE_BFE] = { .name = "bfe", .nsrc = 3, .ndst = 1},
-    [BRW_OPCODE_BFI1] = { .name = "bfe1", .nsrc = 2, .ndst = 1},
-    [BRW_OPCODE_BFI2] = { .name = "bfe2", .nsrc = 3, .ndst = 1},
+    [BRW_OPCODE_BFI1] = { .name = "bfi1", .nsrc = 2, .ndst = 1},
+    [BRW_OPCODE_BFI2] = { .name = "bfi2", .nsrc = 3, .ndst = 1},
     [BRW_OPCODE_ADDC] = { .name = "addc", .nsrc = 2, .ndst = 1},
     [BRW_OPCODE_SUBB] = { .name = "subb", .nsrc = 2, .ndst = 1},
 




More information about the mesa-commit mailing list