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

Author: Rob Clark <[email protected]>
Date:   Wed Jan 13 13:07:51 2016 -0500

freedreno/ir3: fix incorrect decoding of mov instructions

Signed-off-by: Rob Clark <[email protected]>

---

 src/gallium/drivers/freedreno/ir3/disasm-a3xx.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c 
b/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c
index 83ed5ff..1d5022b 100644
--- a/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c
+++ b/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c
@@ -220,7 +220,7 @@ static void print_instr_cat1(instr_t *instr)
                else if (cat1->off > 0)
                        printf("%c<a0.x + %d>", type, cat1->off);
                else
-                       printf("c<a0.x>");
+                       printf("%c<a0.x>", type);
        } else {
                print_reg_src((reg_t)(cat1->src), type_size(cat1->src_type) == 
32,
                                cat1->src_r, cat1->src_c, cat1->src_im, false, 
false, false);

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

Reply via email to