comparison python/ir/__init__.py @ 170:4348da5ca307

Cleanup of ir dir
author Windel Bouwman
date Fri, 29 Mar 2013 17:33:17 +0100
parents 9683a4cd848f
children 3eb9b9e2958d
comparison
equal deleted inserted replaced
169:ee0d30533dae 170:4348da5ca307
1 from .module import Module, Function, BasicBlock 1 from .module import Module
2 from .value import Value
3 from .module import Type, FunctionType
4 from .module import i8, i16, i32, void
5 from .module import printIr
6 from .instruction import * 2 from .instruction import *
7 3
8