Skip to content

Commit

Permalink
- Remove debug codes.
Browse files Browse the repository at this point in the history
  • Loading branch information
whtoo committed Nov 20, 2023
1 parent 56a31f6 commit 7c833c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class CFG<I extends IRNode> implements Iterable<BasicBlock<I>> {

public CFG(List<BasicBlock<I>> nodes, List<Pair<Integer, Integer>> edges) {
// Generate init
this.nodes = new LinkedList<>(nodes); ///.stream().sorted(Comparator.comparingInt(BasicBlock::getId)).toList();
this.nodes = new LinkedList<>(nodes);
this.edges = edges;

links = new ArrayList<>();
Expand Down

0 comments on commit 7c833c2

Please sign in to comment.