|
@@ -46,6 +46,5 @@ class ModelverseJit(object):
|
|
def try_jit(self, body_id, parameter_list):
|
|
def try_jit(self, body_id, parameter_list):
|
|
"""Tries to jit the function defined by the given entry point id and parameter list."""
|
|
"""Tries to jit the function defined by the given entry point id and parameter list."""
|
|
|
|
|
|
- print("Couldn't JIT: " + str(body_id))
|
|
|
|
self.mark_no_jit(body_id)
|
|
self.mark_no_jit(body_id)
|
|
- raise JitCompilationFailedException("Couln't JIT")
|
|
|
|
|
|
+ raise JitCompilationFailedException("Couln't JIT function body at " + str(body_id))
|