Skip to content
Snippets Groups Projects
Commit d0113e91 authored by Russel Arbore's avatar Russel Arbore
Browse files

fix outline

parent a3c65612
No related branches found
No related tags found
No related merge requests found
Pipeline #200645 failed
......@@ -253,6 +253,10 @@ pub fn outline(
if let Node::Phi { control, data } = &mut node
&& *control == top_node
{
for datum in data.iter_mut() {
*datum = convert_id(*datum);
}
// If this node is a phi on the top node, we need to replace the
// inputs corresponding to outside partition predecessors with a
// single data input (with the corresponding control input of
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment