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 <nunes.erico@gmail.com>
Reviewed-by: Qiang Yu <yuq825@gmail.com>
This commit is contained in:
Erico Nunes
2019-07-22 00:55:48 +02:00
parent 9254059dd8
commit a255b49593
+2 -2
View File
@@ -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;
}