From ff966aff999ceefd61f6e3eee1f1a60b8138d4d8 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Fri, 21 Nov 2014 15:04:02 -0800 Subject: [PATCH] i965/disasm: Fix all32h/any32h predicate disassembly. Reviewed-by: Chris Forbes --- src/mesa/drivers/dri/i965/brw_disasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c index b211a0f70d9..e235fd47e62 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -275,7 +275,7 @@ static const char *const pred_ctrl_align1[16] = { [BRW_PREDICATE_ALIGN1_ANY16H] = ".any16h", [BRW_PREDICATE_ALIGN1_ALL16H] = ".all16h", [BRW_PREDICATE_ALIGN1_ANY32H] = ".any32h", - [BRW_PREDICATE_ALIGN1_ANY32H] = ".all32h", + [BRW_PREDICATE_ALIGN1_ALL32H] = ".all32h", }; static const char *const thread_ctrl[4] = { -- 2.11.0