summaryrefslogtreecommitdiff
path: root/V2VM.java
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-04-20 01:03:23 -0600
committerbd-912 <bdunahu@colostate.edu>2024-04-20 01:03:23 -0600
commitb7705e83c2026ff3983fc0b83f9b083d3e8be4c5 (patch)
tree9795143d8c2c9cb9fa7bac25a339533eb704cc32 /V2VM.java
parent63551aff281f1d289605fe2c9975a15124dbe643 (diff)
CFG fix create edges only if nodes != (found by graphviz)
Diffstat (limited to 'V2VM.java')
-rw-r--r--V2VM.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/V2VM.java b/V2VM.java
index 84a585a..5d78381 100644
--- a/V2VM.java
+++ b/V2VM.java
@@ -33,8 +33,8 @@ public class V2VM {
MinimalLogger.info(String.format("Generating CFGs..."));
CFGSimp cfv = new CFGSimp(prog, strProg);
ArrayList<ControlFlowGraph> cfgs = cfv.getCFGs();
- MinimalLogger.info(String.format("Spilling Everywhere..."));
- SpillEverywhere spill = new SpillEverywhere(prog, strProg);
+ // MinimalLogger.info(String.format("Spilling Everywhere..."));
+ // SpillEverywhere spill = new SpillEverywhere(prog, strProg);
} catch (IOException e) {
System.out.println(e.toString());