Skip to content

Commit 894c514

Browse files
committed
Merge pull request #254 from pixie-lang/warnings-to-jit-log
removed jit abort warnings, will re-enable later if needed
2 parents 2c5c83e + 621020f commit 894c514

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

target.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818
import rpython.rlib.rpath as rpath
1919
import rpython.rlib.rpath as rposix
2020
from rpython.rlib.objectmodel import we_are_translated
21+
from rpython.jit.codewriter.policy import log
2122

2223
class DebugIFace(JitHookInterface):
2324
def on_abort(self, reason, jitdriver, greenkey, greenkey_repr, logops, operations):
24-
print "Aborted Trace, reason: ", Counters.counter_names[reason], logops, greenkey_repr
25+
# print "Aborted Trace, reason: ", Counters.counter_names[reason], logops, greenkey_repr
26+
pass
2527

2628
import sys, pdb
2729

0 commit comments

Comments
 (0)