Mercurial > lcfOS
diff python/ir/context.py @ 147:4e79484a9d47
Moved core to ir folder
author | Windel Bouwman |
---|---|
date | Fri, 22 Feb 2013 10:33:48 +0100 |
parents | python/ppci/core/context.py@9e552d34bd60 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python/ir/context.py Fri Feb 22 10:33:48 2013 +0100 @@ -0,0 +1,12 @@ +from .llvmtype import IntegerType, llvmType, typeID, FunctionType + +class Context: + """ Global context """ + def __init__(self): + self.Int8Type = IntegerType(8) + self.Int16Type = IntegerType(16) + self.Int32Type = IntegerType(32) + self.Int64Type = IntegerType(64) + self.VoidType = llvmType(typeID.Void) + self.DoubleType = llvmType(typeID.Double) +