comparison python/ir/__init__.py @ 272:e64bae57cda8

refactor ir
author Windel Bouwman
date Sat, 31 Aug 2013 17:58:54 +0200
parents cf7d5fb7d9c8
children ea93e0a7a31e
comparison
equal deleted inserted replaced
271:cf7d5fb7d9c8 272:e64bae57cda8
1 from .module import * 1 from .module import Module, Function, Block
2 from .instruction import * 2 from .instruction import *
3 from .function import Function, Block
4 from .builder import Builder 3 from .builder import Builder
5 4