diff options
author | Rob Clark <[email protected]> | 2016-01-13 13:07:51 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-01-16 14:20:37 -0500 |
commit | 680664dff930ecf3dd12a5086cdd0e10653b61dc (patch) | |
tree | a82fc3973783cb87d95542eebd25848568e2e189 /src/gallium/drivers | |
parent | 2809c87f90e359bd94f1bd15d7615ea28010779a (diff) |
freedreno/ir3: fix incorrect decoding of mov instructions
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/freedreno/ir3/disasm-a3xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c b/src/gallium/drivers/freedreno/ir3/disasm-a3xx.c index 83ed5ffdca0..1d5022b69c7 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); |