diff options
Diffstat (limited to 'V2VM.java')
-rw-r--r-- | V2VM.java | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -27,18 +27,14 @@ public class V2VM { VaporProgram prog = parseVapor(System.in, System.out); + SpillEverywhere spill = new SpillEverywhere(prog, strProg); + ArrayList<ControlFlowGraph> cfgs = new ArrayList<ControlFlowGraph>(); for (VFunction f : prog.functions) { CFGSimp cfg = new CFGSimp(f); cfgs.add(cfg.getCFG()); } - SpillEverywhere<String, Void> se = new SpillEverywhere<String, Void>(strProg); - - // for (VFunction f : prog.functions) - // for (VInstr s : f.body) - // s.accept("", se); - } catch (IOException e) { System.out.println(e.toString()); System.exit(1); |