Mercurial > lcfOS
diff python/ir/basicblock.py @ 269:5f8c04a8d26b
Towards better modularity
author | Windel Bouwman |
---|---|
date | Sun, 18 Aug 2013 17:43:18 +0200 |
parents | 5ec7580976d9 |
children |
line wrap: on
line diff
--- a/python/ir/basicblock.py Wed Aug 14 20:12:40 2013 +0200 +++ b/python/ir/basicblock.py Sun Aug 18 17:43:18 2013 +0200 @@ -1,5 +1,3 @@ - -# from .instruction import Statement class Block: """ @@ -13,7 +11,6 @@ return 'Block {0}'.format(self.name) def addInstruction(self, i): - #assert isinstance(i, Statement) i.parent = self self.instructions.append(i)