annotate python/ir/__init__.py @ 167:0b5b2ee6b435

Added 2 unit tests
author Windel Bouwman
date Fri, 22 Mar 2013 17:40:13 +0100
parents 9683a4cd848f
children 4348da5ca307
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
158
9683a4cd848f Added some functions for code generation
Windel Bouwman
parents: 157
diff changeset
5 from .module import printIr
9683a4cd848f Added some functions for code generation
Windel Bouwman
parents: 157
diff changeset
6 from .instruction import *
101
af0d7913677a Fixes and splitting into 3 stage
windel
parents: 95
diff changeset
7
157
8f3924b6076e Added some code generator things
Windel Bouwman
parents: 156
diff changeset
8