summaryrefslogtreecommitdiff
path: root/cfg/CFGNode.java
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-04-20 23:43:30 -0600
committerbd-912 <bdunahu@colostate.edu>2024-04-20 23:43:30 -0600
commit04fd097fb51346f655c7bdc0c88b85e29359ef1c (patch)
tree246fb653f11e61306cb66249f4ecce451f7b8953 /cfg/CFGNode.java
parent35eae1492c94e353ba8a1a52bfbae9313808b357 (diff)
Non-function live-interval computation algorithm
Diffstat (limited to 'cfg/CFGNode.java')
-rw-r--r--cfg/CFGNode.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/cfg/CFGNode.java b/cfg/CFGNode.java
index e604753..5ce39b5 100644
--- a/cfg/CFGNode.java
+++ b/cfg/CFGNode.java
@@ -21,7 +21,7 @@ public class CFGNode {
this.liveness = new HashSet<>();
}
- public String toString() {
+ @Override public String toString() {
return String.format("L%d",
this.instruction.sourcePos.line);
}