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

fijal at codespeak.net fijal at codespeak.net
Tue Mar 3 14:46:23 CET 2009


Author: fijal
Date: Tue Mar  3 14:46:17 2009
New Revision: 62474

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/tl.py
Log:
use the hint (this makes test pass)


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	Tue Mar  3 14:46:17 2009
@@ -12,6 +12,8 @@
 
 class Stack(object):
     _virtualizable2_ = True
+
+    _always_virtual_ = ['stack']
     
     def __init__(self, size):
         self.stack = [0] * size



More information about the Pypy-commit mailing list