[pypy-svn] r65089 - pypy/branch/pyjitpl5/pypy/jit/metainterp

antocuni at codespeak.net antocuni at codespeak.net
Wed May 6 14:18:16 CEST 2009


Author: antocuni
Date: Wed May  6 14:18:14 2009
New Revision: 65089

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/support.py
Log:
add support for oostring of unsigneds


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/support.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/support.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/support.py	Wed May  6 14:18:14 2009
@@ -241,6 +241,9 @@
     def _ll_1_oostring_char_foldable(ch):
         return ootype.oostring(ch, -1)
 
+    def _ll_1_oostring_unsigned_foldable(n):
+        return ootype.oostring(n, -1)
+
     def _ll_1_oostring_string_foldable(s):
         return ootype.oostring(s, -1)
 



More information about the Pypy-commit mailing list