annotate python/ir/__init__.py @ 156:1b4a85bdd99c

change types
author Windel Bouwman
date Sun, 03 Mar 2013 15:50:34 +0100
parents b28a11c01dbe
children 8f3924b6076e
rev   line source
155
b28a11c01dbe Simplified IR classes
Windel Bouwman
parents: 147
diff changeset
1 from .module import Module, Function, BasicBlock
b28a11c01dbe Simplified IR classes
Windel Bouwman
parents: 147
diff changeset
2 from .value import Value
156
1b4a85bdd99c change types
Windel Bouwman
parents: 155
diff changeset
3 from .types import Type, i8, i16, i32, void
101
af0d7913677a Fixes and splitting into 3 stage
windel
parents: 95
diff changeset
4