mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-11 18:28:31 +02:00
freedreno/ir3/print: Show end's outidxs
Signed-off-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13605>
This commit is contained in:
parent
6239adebbc
commit
f6f760a98d
1 changed files with 3 additions and 1 deletions
|
|
@ -331,10 +331,12 @@ print_instr(struct log_stream *stream, struct ir3_instruction *instr, int lvl)
|
|||
print_reg_name(stream, instr, reg, true);
|
||||
first = false;
|
||||
}
|
||||
foreach_src (reg, instr) {
|
||||
foreach_src_n (reg, n, instr) {
|
||||
if (!first)
|
||||
mesa_log_stream_printf(stream, ", ");
|
||||
print_reg_name(stream, instr, reg, false);
|
||||
if (instr->opc == OPC_END || instr->opc == OPC_CHMASK)
|
||||
mesa_log_stream_printf(stream, " (%u)", instr->end.outidxs[n]);
|
||||
first = false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue