aco/gfx11: fix s_waitcnt printing

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17710>
This commit is contained in:
Rhys Perry
2022-07-21 15:17:24 +01:00
committed by Marge Bot
parent 7b21af3f51
commit 7cecc81683
6 changed files with 23 additions and 22 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ emit_instruction(asm_context& ctx, std::vector<uint32_t>& out, Instruction* inst
FILE* const memf = u_memstream_get(&mem);
fprintf(memf, "Unsupported opcode: ");
aco_print_instr(instr, memf);
aco_print_instr(ctx.gfx_level, instr, memf);
u_memstream_close(&mem);
aco_err(ctx.program, outmem);