artiq/artiq/py2llvm/__init__.py

7 lines
183 B
Python
Raw Normal View History

from artiq.py2llvm.module import Module
2014-09-13 19:32:21 +08:00
def get_runtime_binary(env, func_def):
module = Module(env)
2014-09-13 19:32:21 +08:00
module.compile_function(func_def, dict())
return module.emit_object()