summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/lima/ir
diff options
context:
space:
mode:
authorErico Nunes <[email protected]>2019-07-22 00:55:48 +0200
committerErico Nunes <[email protected]>2019-07-23 08:24:19 +0000
commita255b495932deccec48d759aba3abf1837c7a4b7 (patch)
tree33471939ccbf67c35f6686e35a2608a72abc0ae0 /src/gallium/drivers/lima/ir
parent9254059dd859d6bb8820525910ec028098e788e8 (diff)
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 <[email protected]> Reviewed-by: Qiang Yu <[email protected]>
Diffstat (limited to 'src/gallium/drivers/lima/ir')
-rw-r--r--src/gallium/drivers/lima/ir/pp/regalloc.c4
1 files 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;
}