diff options
-rw-r--r-- | src/freedreno/ir3/disasm-a3xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/freedreno/ir3/disasm-a3xx.c b/src/freedreno/ir3/disasm-a3xx.c index 02335e46ab1..2648fa1fa86 100644 --- a/src/freedreno/ir3/disasm-a3xx.c +++ b/src/freedreno/ir3/disasm-a3xx.c @@ -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)"); |