diff python/ppci/codegen/registerallocator.py @ 305:0615b5308710

Updated docs
author Windel Bouwman
date Fri, 06 Dec 2013 13:50:38 +0100
parents 6753763d3bec
children 2c9768114877
line wrap: on
line diff
--- a/python/ppci/codegen/registerallocator.py	Fri Dec 06 12:45:02 2013 +0100
+++ b/python/ppci/codegen/registerallocator.py	Fri Dec 06 13:50:38 2013 +0100
@@ -35,12 +35,6 @@
         self.activeMoves = set()
         self.worklistMoves = set()
 
-    def printLive(self):
-        print('Liveness:')
-        for i in self.f.instructions:
-            cfgn = self.f.cfg._map[i]
-            print(i, cfgn.live_in)
-
     def Build(self):
         """ 1. Construct interference graph from instruction list """
         self.f.cfg = FlowGraph(self.f.instructions)