From: Connor Abbott Date: Thu, 3 Oct 2019 19:19:40 +0000 (-0400) Subject: lima/gpir: Make lima_gpir_node_insert_child() useful X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9fb0fda8e7bfa95686fd60ee563938b8e1196437;p=mesa.git lima/gpir: Make lima_gpir_node_insert_child() useful We weren't using this function before. The name is confusing, but it changes the child while also fixing up the dependence link, if you don't have access to it already. Or at least, I think that's what the intention is, and what we'll need to change the branch condition in the next commit. Adding a dependency between the new and old source doesn't make any sense for this, and we also need to change the actual source. Reviewed-by: Vasily Khoruzhick Part-of: --- diff --git a/src/gallium/drivers/lima/ir/gp/node.c b/src/gallium/drivers/lima/ir/gp/node.c index 78f7bd130ea..ef534e7e286 100644 --- a/src/gallium/drivers/lima/ir/gp/node.c +++ b/src/gallium/drivers/lima/ir/gp/node.c @@ -413,10 +413,10 @@ void gpir_node_insert_child(gpir_node *parent, gpir_node *child, gpir_node_foreach_pred(parent, dep) { if (dep->pred == child) { gpir_node_replace_pred(dep, insert_child); + gpir_node_replace_child(parent, child, insert_child); break; } } - gpir_node_add_dep(insert_child, child, GPIR_DEP_INPUT); } void gpir_node_delete(gpir_node *node)