annotate python/ir/__init__.py @ 157:8f3924b6076e

Added some code generator things
author Windel Bouwman
date Sun, 03 Mar 2013 18:14:35 +0100
parents 1b4a85bdd99c
children 9683a4cd848f
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
157
8f3924b6076e Added some code generator things
Windel Bouwman
parents: 156
diff changeset
3 from .module import Type, FunctionType
8f3924b6076e Added some code generator things
Windel Bouwman
parents: 156
diff changeset
4 from .module import i8, i16, i32, void
8f3924b6076e Added some code generator things
Windel Bouwman
parents: 156
diff changeset
5 from .instruction import AddInstruction, BinaryOperator, ImmLoadInstruction
101
af0d7913677a Fixes and splitting into 3 stage
windel
parents: 95
diff changeset
6
157
8f3924b6076e Added some code generator things
Windel Bouwman
parents: 156
diff changeset
7