From 849005a47190546ff7d146882712ebab03be1e93 Mon Sep 17 00:00:00 2001 From: Job Noorman Date: Thu, 15 Aug 2024 08:46:35 +0200 Subject: [PATCH] ir3: print (sat) modifier of instructions Signed-off-by: Job Noorman Part-of: --- src/freedreno/ir3/ir3_print.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/freedreno/ir3/ir3_print.c b/src/freedreno/ir3/ir3_print.c index a8b542d1a54..b01a7508e46 100644 --- a/src/freedreno/ir3/ir3_print.c +++ b/src/freedreno/ir3/ir3_print.c @@ -96,6 +96,8 @@ print_instr_name(struct log_stream *stream, struct ir3_instruction *instr, mesa_log_stream_printf(stream, "(nop%d)", instr->nop); if (instr->flags & IR3_INSTR_UL) mesa_log_stream_printf(stream, "(ul)"); + if (instr->flags & IR3_INSTR_SAT) + mesa_log_stream_printf(stream, "(sat)"); } else { mesa_log_stream_printf(stream, " "); }