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 <anarsoul@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4125>
This commit is contained in:
Connor Abbott 2019-10-03 15:19:40 -04:00 committed by Marge Bot
parent 5c3f20a25b
commit 9fb0fda8e7
1 changed files with 1 additions and 1 deletions

View File

@ -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)