[pypy-svn] r68498 - pypy/branch/prevent-silly-unrolling/pypy/interpreter

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Oct 15 16:52:20 CEST 2009


Author: cfbolz
Date: Thu Oct 15 16:52:19 2009
New Revision: 68498

Modified:
   pypy/branch/prevent-silly-unrolling/pypy/interpreter/pyopcode.py
Log:
this is safe as well


Modified: pypy/branch/prevent-silly-unrolling/pypy/interpreter/pyopcode.py
==============================================================================
--- pypy/branch/prevent-silly-unrolling/pypy/interpreter/pyopcode.py	(original)
+++ pypy/branch/prevent-silly-unrolling/pypy/interpreter/pyopcode.py	Thu Oct 15 16:52:19 2009
@@ -171,6 +171,7 @@
             next_instr = block.handle(self, unroller)
             return next_instr
 
+    @jit.unroll_safe
     def dispatch_bytecode(self, co_code, next_instr, ec):
         space = self.space
         while True:



More information about the Pypy-commit mailing list