annotate python/ir/__init__.py @ 266:649884d9dc61 Working chain 1

Test
author Windel Bouwman
date Fri, 09 Aug 2013 16:49:29 +0200
parents 5a7d37d615ee
children 5ec7580976d9
rev   line source
171
3eb9b9e2958d Improved IR code
Windel Bouwman
parents: 170
diff changeset
1 from .module import *
158
9683a4cd848f Added some functions for code generation
Windel Bouwman
parents: 157
diff changeset
2 from .instruction import *
172
5a7d37d615ee Added function to IR
Windel Bouwman
parents: 171
diff changeset
3 from .function import Function
171
3eb9b9e2958d Improved IR code
Windel Bouwman
parents: 170
diff changeset
4 from .builder import Builder
172
5a7d37d615ee Added function to IR
Windel Bouwman
parents: 171
diff changeset
5 from .basicblock import BasicBlock
101
af0d7913677a Fixes and splitting into 3 stage
windel
parents: 95
diff changeset
6