Avoid invalid merging of phi-sourced nodes in DFG

This commit is contained in:
Alexey Andreev 2015-07-06 22:06:09 +03:00
parent 1b643a2ad6
commit 4a19aaf091

View File

@ -66,7 +66,6 @@ public class DataFlowGraphBuilder implements InstructionReader {
int from = incoming.getValue().getIndex();
int to = phi.getReceiver().getIndex();
builder.addEdge(from, to);
join(from, to);
}
}
block.readAllInstructions(this);