mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 20:50:09 +01:00
freedreno/ir3: fix incorrect decoding of mov instructions
Signed-off-by: Rob Clark <robclark@freedesktop.org>
This commit is contained in:
parent
2809c87f90
commit
680664dff9
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue