Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r60605:f4a2add377b0
Date: 2013-01-28 13:55 +0200
http://bitbucket.org/pypy/pypy/changeset/f4a2add377b0/

Log:    enable JIT for stackless

diff --git a/pypy/module/_continuation/interp_continuation.py 
b/pypy/module/_continuation/interp_continuation.py
--- a/pypy/module/_continuation/interp_continuation.py
+++ b/pypy/module/_continuation/interp_continuation.py
@@ -34,7 +34,7 @@
         if self.sthread is not None:
             raise geterror(self.space, "continulet already __init__ialized")
         sthread = build_sthread(self.space)
-        workaround_disable_jit(sthread)
+        #workaround_disable_jit(sthread)
         #
         # hackish: build the frame "by hand", passing it the correct arguments
         space = self.space
@@ -77,7 +77,7 @@
                 global_state.clear()
                 raise geterror(self.space, "continulet already finished")
         self.check_sthread()
-        workaround_disable_jit(self.sthread)
+        #workaround_disable_jit(self.sthread)
         #
         global_state.origin = self
         if to is None:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to