Skip to content
Snippets Groups Projects
Commit 0012148d authored by rarbore2's avatar rarbore2
Browse files

Merge branch 'outline_fix_2' into 'main'

Fix outlining again

See merge request !78
parents bbb227d1 7e362766
No related branches found
No related tags found
1 merge request!78Fix outlining again
Pipeline #200648 passed
......@@ -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