Mercurial > lcfOS
diff python/ppci/core/__init__.py @ 110:9e552d34bd60
Work on compiler
author | Windel Bouwman |
---|---|
date | Fri, 04 Jan 2013 15:25:58 +0100 |
parents | f2d980eef509 |
children |
line wrap: on
line diff
--- a/python/ppci/core/__init__.py Tue Jan 01 17:17:44 2013 +0100 +++ b/python/ppci/core/__init__.py Fri Jan 04 15:25:58 2013 +0100 @@ -1,12 +1,14 @@ -from .instruction import * +from .instruction import BinaryOperator from .function import Function -from .value import Value +from .value import Value, Constant from .bitreader import BitcodeReader, BitcodeWriter from .errors import CompilerException from .module import Module -from .llvmtype import FunctionType +from .llvmtype import FunctionType, i8, i16, i32, void from .context import Context from .asmwriter import AsmWriter +from .basicblock import BasicBlock +from .irbuilder import IRBuilder version='0.0.1'