Skip to content

Commit

Permalink
Fixed a bug in pretty printer
Browse files Browse the repository at this point in the history
  • Loading branch information
yousifpatti committed Nov 21, 2023
1 parent abe8f30 commit 6f6f642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/util/RunUtils.scala
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ object RunUtils {
def printNode(node: CfgNode): Unit = {
s.append(node)
s.append(" :: ")
s.append(result(node))
s.append(if result.contains(node) then result(node) else "Unreachable")
s.append(System.lineSeparator())
}

Expand Down

0 comments on commit 6f6f642

Please sign in to comment.