From a255b495932deccec48d759aba3abf1837c7a4b7 Mon Sep 17 00:00:00 2001 From: Erico Nunes Date: Mon, 22 Jul 2019 00:55:48 +0200 Subject: [PATCH] lima/ppir: fix debug logs in regalloc The macros already prepend "ppir: ", remove them from the actual strings so it doesn't appear duplicated. Signed-off-by: Erico Nunes Reviewed-by: Qiang Yu --- src/gallium/drivers/lima/ir/pp/regalloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/lima/ir/pp/regalloc.c b/src/gallium/drivers/lima/ir/pp/regalloc.c index 3bd8569cf15..a03f075fac2 100644 --- a/src/gallium/drivers/lima/ir/pp/regalloc.c +++ b/src/gallium/drivers/lima/ir/pp/regalloc.c @@ -743,11 +743,11 @@ static bool ppir_regalloc_prog_try(ppir_compiler *comp, bool *spilled) /* Ask the outer loop to call back in. */ *spilled = true; - ppir_debug("ppir: spilled register\n"); + ppir_debug("spilled register\n"); goto err_out; } - ppir_error("ppir: regalloc fail\n"); + ppir_error("regalloc fail\n"); goto err_out; } -- 2.30.2