[Mesa-dev] [PATCH 1/3] i965: Fix disassembled names of BFI1 and BFI2 instructions.
Kenneth Graunke
kenneth at whitecape.org
Sat Nov 16 15:54:58 PST 2013
On 11/16/2013 03:24 PM, Matt Turner wrote:
> ---
> src/mesa/drivers/dri/i965/brw_disasm.c | 4 ++--
> 1 file 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},
>
>
This patch is:
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
More information about the mesa-dev
mailing list