panfrost: Redirect cmdstream includes through GenXML
[mesa.git] / src / panfrost / bifrost / bi_liveness.c
index 335562ca3e977df35c99fd86a5cf5f935e649b04..75e48259f255470eb0b63d5b91c78e2edabee0c1 100644 (file)
@@ -29,7 +29,7 @@ bi_liveness_ins_update(uint16_t *live, bi_instruction *ins, unsigned max)
 {
         /* live_in[s] = GEN[s] + (live_out[s] - KILL[s]) */
 
-        pan_liveness_kill(live, ins->dest, max, ins->writemask);
+        pan_liveness_kill(live, ins->dest, max, bi_writemask(ins));
 
         bi_foreach_src(ins, src) {
                 unsigned node = ins->src[src];