Skip to content

Commit

Permalink
Warnings fixed (mostly infinite loop with break)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: a8471e470588d2d29ce8b5c902ba68c64feda8da
  • Loading branch information
amaembo authored and intellij-monorepo-bot committed Jul 4, 2022
1 parent fcad980 commit 96a459e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public String toString() {

for (BasicBlock block : blocks) {
buf.append("----- Block ").append(block.id).append(" -----").append(new_line_separator);
buf.append(block.toString());
buf.append(block);
buf.append("----- Edges -----").append(new_line_separator);

List<BasicBlock> suc = block.getSuccessors();
Expand Down

0 comments on commit 96a459e

Please sign in to comment.