mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-25 20:00:37 +02:00
freedreno/ir3: fix sam.s2en decoding
Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
2d31cf9d3b
commit
45b7a581b4
1 changed files with 5 additions and 3 deletions
|
|
@ -463,9 +463,11 @@ static void print_instr_cat5(struct disasm_ctx *ctx, instr_t *instr)
|
|||
}
|
||||
|
||||
if (cat5->is_s2en) {
|
||||
fprintf(ctx->out, ", ");
|
||||
print_reg_src(ctx, (reg_t)(cat5->s2en.src2), cat5->full, false, false, false,
|
||||
false, false, false);
|
||||
if (cat5->is_o || info[cat5->opc].src2) {
|
||||
fprintf(ctx->out, ", ");
|
||||
print_reg_src(ctx, (reg_t)(cat5->s2en.src2), cat5->full,
|
||||
false, false, false, false, false, false);
|
||||
}
|
||||
fprintf(ctx->out, ", ");
|
||||
print_reg_src(ctx, (reg_t)(cat5->s2en.src3), false, false, false, false,
|
||||
false, false, false);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue