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

Whoops

parent ab5b00cf
No related branches found
No related tags found
1 merge request!189Use loop bound canon to forkify demosaic
Pipeline #201751 passed
This commit is part of merge request !189. Comments created here will be created in the context of that merge request.
......@@ -486,11 +486,10 @@ fn basic_blocks(
// Look between the LCA and the schedule early location to place the
// node.
let schedule_early = schedule_early[id.idx()].unwrap();
// If the node has no users, then it doesn't really matter where we
// place it - just place it at the early placement.
let schedule_late = lca.unwrap_or(schedule_early);
let mut chain = dom
// If the node has no users, then it doesn't really matter where we
// place it - just place it at the early placement.
.chain(schedule_late, schedule_early);
let mut chain = dom.chain(schedule_late, schedule_early);
if let Some(mut location) = chain.next() {
while let Some(control_node) = chain.next() {
......
......@@ -123,9 +123,9 @@ simpl!(fuse5);
delete-uncalled(*);
simpl!(*);
xdot[true](fuse1);
simpl!(fuse1);
fork-split(fuse1);
unforkify(fuse1);
fork-split(fuse2);
unforkify(fuse2);
......
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