Implementation of the LLVM tutorial in Python
Find a file
Eli Bendersky a1241876ba Working on codegen for if nodes.
Need to motify the way BBs are created. I should create them with Block() and
only later insert them into the function with f.basic_blocks.append...

This ensures properly nested creation of BBs in case of nested conditionals,
the way it's done in the C++ code.
2015-01-29 09:54:22 -08:00
.gitignore Initial commit 2015-01-26 08:26:47 -08:00
chapter2.py Polishing 2015-01-29 08:55:28 -08:00
chapter3and4.py Polishing 2015-01-29 08:55:28 -08:00
chapter5.py Working on codegen for if nodes. 2015-01-29 09:54:22 -08:00
LICENSE Initial commit 2015-01-26 08:26:47 -08:00
README.rst rename README file for proper Github rendering 2015-01-27 15:51:58 -08:00

Pykaleidoscope
==============

Testing
-------

Some of the files have unit test classes in them. To run all unit tests::

    $ python3.4 -m unittest discover -p "*.py"