From 8c7c0f7114ab27eb4b9448655a93e4ebf33effcf Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Mon, 29 Sep 2014 16:58:14 +0800 Subject: [PATCH] ilo: fix a missing 'else' An 'else' is missing in the disassembler. Signed-off-by: Chia-I Wu --- src/gallium/drivers/ilo/shader/toy_compiler_disasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c b/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c index e9cd187..f70b93d 100644 --- a/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c +++ b/src/gallium/drivers/ilo/shader/toy_compiler_disasm.c @@ -1159,7 +1159,7 @@ disasm_printer_add_mdesc_sampler(struct disasm_printer *printer, if (ilo_dev_gen(inst->dev) >= ILO_GEN(7)) { op = GEN_EXTRACT(mdesc, GEN7_MSG_SAMPLER_OP); simd = GEN_EXTRACT(mdesc, GEN7_MSG_SAMPLER_SIMD); - } { + } else { op = GEN_EXTRACT(mdesc, GEN6_MSG_SAMPLER_OP); simd = GEN_EXTRACT(mdesc, GEN6_MSG_SAMPLER_SIMD); } -- 2.7.4