[pypy-svn] r63653 - pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp

fijal at codespeak.net fijal at codespeak.net
Sun Apr 5 03:29:27 CEST 2009


Author: fijal
Date: Sun Apr  5 03:29:25 2009
New Revision: 63653

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/support.py
Log:
adapt to new oopspecs


Modified: pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/support.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/support.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/support.py	Sun Apr  5 03:29:25 2009
@@ -132,6 +132,13 @@
 _ll_3_dict_setitem = rdict.ll_dict_setitem
 _ll_2_dict_contains = rdict.ll_contains
 _ll_3_dict_get = rdict.ll_get
+def _ll_1_newdictiter(ITERPTR, d):
+    return rdict.ll_dictiter(ITERPTR, d)
+_ll_1_newdictiter.need_result_type = True
+_ll_3_dictiter_dictnext = rdict.ll_dictnext
+def _ll_2_newdictkvi(LIST, dic, func):
+    return rdict.ll_kvi(dic, LIST, func)
+_ll_2_newdictkvi.need_result_type = True
 
 _ll_5_string_copy_contents = rstr.copy_string_contents
 



More information about the Pypy-commit mailing list