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

Author: Chia-I Wu <[email protected]>
Date:   Mon Sep 29 16:58:14 2014 +0800

ilo: fix a missing 'else'

An 'else' is missing in the disassembler.

Signed-off-by: Chia-I Wu <[email protected]>

---

 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);
    }

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to