diff options
Diffstat (limited to 'V2VM.java')
-rw-r--r-- | V2VM.java | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -19,11 +19,10 @@ public class V2VM { try { VFunction[] funts = parseVapor(System.in, System.out).functions; - ControlFlowGraph cfg = new ControlFlowGraph<Void, Void>(); + ControlFlowGraph<String, Void> cfg = new ControlFlowGraph<String, Void>(); - TotalSpill<String, Void> ts = new TotalSpill<String, Void>(); for (VFunction f : funts) { - f.body[0].accept("", ts); + f.body[0].accept("", cfg); } } catch (IOException e) { |