[pypy-svn] r61795 - pypy/branch/pyjitpl5/pypy/jit/tl

fijal at codespeak.net fijal at codespeak.net
Thu Feb 12 17:27:49 CET 2009


Author: fijal
Date: Thu Feb 12 17:27:45 2009
New Revision: 61795

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/tl.py
Log:
(arigo, fijal) experimental - add a _virtualizable2_ arg to Stack


Modified: pypy/branch/pyjitpl5/pypy/jit/tl/tl.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/tl/tl.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/tl/tl.py	Thu Feb 12 17:27:45 2009
@@ -11,6 +11,8 @@
     return t
 
 class Stack(object):
+    _virtualizable2_ = True
+    
     def __init__(self, size):
         self.stack = [0] * size
         self.stackpos = 0



More information about the Pypy-commit mailing list