Module: Mesa
Branch: master
Commit: 6313b8d881e810f9ddd7f0499dddd7049e6cf958
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=6313b8d881e810f9ddd7f0499dddd7049e6cf958

Author: Rob Clark <[email protected]>
Date:   Mon Apr 27 16:58:18 2020 -0700

freedreno/ir3/ra: use ir3_debug_print helper

Signed-off-by: Rob Clark <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4780>

---

 src/freedreno/ir3/ir3_ra.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/src/freedreno/ir3/ir3_ra.c b/src/freedreno/ir3/ir3_ra.c
index 94386ed4694..d55753085a5 100644
--- a/src/freedreno/ir3/ir3_ra.c
+++ b/src/freedreno/ir3/ir3_ra.c
@@ -1537,20 +1537,14 @@ ir3_ra(struct ir3_shader_variant *v, struct 
ir3_instruction **precolor,
        if (ret)
                return ret;
 
-       if (ir3_shader_debug & IR3_DBG_OPTMSGS) {
-               printf("AFTER RA (1st pass):\n");
-               ir3_print(v->ir);
-       }
+       ir3_debug_print(v->ir, "AFTER RA (1st pass)");
 
        /* Second pass, assign the scalar registers: */
        ret = ir3_ra_pass(v, precolor, nprecolor, true);
        if (ret)
                return ret;
 
-       if (ir3_shader_debug & IR3_DBG_OPTMSGS) {
-               printf("AFTER RA (2nd pass):\n");
-               ir3_print(v->ir);
-       }
+       ir3_debug_print(v->ir, "AFTER RA (2st pass)");
 
 #ifdef DEBUG
 #  define SANITY_CHECK DEBUG

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to