@@ -799,7 +799,8 @@ def compile_function_body_fast(jit, function_name, body_id, _):
# Lower the CFG to tree IR.
try:
constructed_body = cfg_to_tree.lower_flow_graph(entry_point, jit)
- except:
+ except Exception as e:
+ print("Exception in JIT: " + str(e))
raise JitCompilationFailedException("UNKNOWN...")
# Optimize the tree that was generated.