annotate python/ir/__init__.py @ 268:5ec7580976d9

Op naar tree-IR
author Windel Bouwman
date Wed, 14 Aug 2013 20:12:40 +0200
parents 5a7d37d615ee
children cf7d5fb7d9c8
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
268
5ec7580976d9 Op naar tree-IR
Windel Bouwman
parents: 172
diff changeset
5 from .basicblock import Block
101
af0d7913677a Fixes and splitting into 3 stage
windel
parents: 95
diff changeset
6