Skip to content

Commit

Permalink
disasm: fix ir3 mov src decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
robclark committed Jan 13, 2016
1 parent 1167478 commit 00fad60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/disasm-a3xx.c
Expand Up @@ -399,7 +399,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);
Expand Down

0 comments on commit 00fad60

Please sign in to comment.