mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
freedreno/ir3: Print a space after nop counts, like qcom's disasm.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4736>
This commit is contained in:
parent
916629f9d7
commit
90984ba853
1 changed files with 1 additions and 1 deletions
|
|
@ -1250,7 +1250,7 @@ static bool print_instr(struct disasm_ctx *ctx, uint32_t *dwords, int n)
|
|||
nop = (instr->cat3.src2_r * 2) + instr->cat3.src1_r;
|
||||
ctx->instructions += nop;
|
||||
if (nop)
|
||||
fprintf(ctx->out, "(nop%d)", nop);
|
||||
fprintf(ctx->out, "(nop%d) ", nop);
|
||||
|
||||
if (instr->ul && ((2 <= instr->opc_cat) && (instr->opc_cat <= 4)))
|
||||
fprintf(ctx->out, "(ul)");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue