forked from M-Labs/artiq
1
0
Fork 0

Move old py2llvm code to artiq/py2llvm_old.

This commit is contained in:
whitequark 2015-06-11 02:58:29 +03:00
parent 159692339d
commit 9953302cb6
11 changed files with 6 additions and 6 deletions

View File

@ -1,6 +0,0 @@
from artiq.py2llvm.module import Module
def get_runtime_binary(env, func_def):
module = Module(env)
module.compile_function(func_def, dict())
return module.emit_object()

View File

@ -0,0 +1,6 @@
from artiq.py2llvm.module import Module
def get_runtime_binary(env, func_def):
module = Module(env)
module.compile_function(func_def, dict())
return module.emit_object()