diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-21 01:17:31 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-21 01:17:31 -0600 |
commit | 110b4f031aea36445250d79c7257a57f15fb7b82 (patch) | |
tree | b4c03e84b05a009e1c9b978f13c5887de2b59764 /cfg | |
parent | 04fd097fb51346f655c7bdc0c88b85e29359ef1c (diff) |
Fix bugs in LiveInterval, successfully calculate (gapless) LIR
Diffstat (limited to 'cfg')
-rw-r--r-- | cfg/ControlFlowGraph.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cfg/ControlFlowGraph.java b/cfg/ControlFlowGraph.java index c8a7f16..274482b 100644 --- a/cfg/ControlFlowGraph.java +++ b/cfg/ControlFlowGraph.java @@ -82,10 +82,6 @@ public class ControlFlowGraph { source.toString())); } - MinimalLogger.info(String.format("Spilling variables: %s", - source.getReaching().toString())); - dest.reaching.addAll(source.reaching); - return ret; } |