[pypy-svn] r75955 - pypy/branch/reflex-support/pypy/jit/backend/llgraph

arigo at codespeak.net arigo at codespeak.net
Wed Jul 7 10:43:51 CEST 2010


Author: arigo
Date: Wed Jul  7 10:43:49 2010
New Revision: 75955

Modified:
   pypy/branch/reflex-support/pypy/jit/backend/llgraph/llimpl.py
Log:
Fix for metainterp/test/test_ztranslation.


Modified: pypy/branch/reflex-support/pypy/jit/backend/llgraph/llimpl.py
==============================================================================
--- pypy/branch/reflex-support/pypy/jit/backend/llgraph/llimpl.py	(original)
+++ pypy/branch/reflex-support/pypy/jit/backend/llgraph/llimpl.py	Wed Jul  7 10:43:49 2010
@@ -1551,6 +1551,8 @@
 setannotation(do_getarrayitem_gc_int, annmodel.SomeInteger())
 setannotation(do_getarrayitem_gc_ptr, annmodel.SomePtr(llmemory.GCREF))
 setannotation(do_getarrayitem_gc_float, annmodel.SomeFloat())
+setannotation(do_getarrayitem_raw_int, annmodel.SomeInteger())
+setannotation(do_getarrayitem_raw_float, annmodel.SomeFloat())
 setannotation(do_getfield_gc_int, annmodel.SomeInteger())
 setannotation(do_getfield_gc_ptr, annmodel.SomePtr(llmemory.GCREF))
 setannotation(do_getfield_gc_float, annmodel.SomeFloat())
@@ -1562,6 +1564,8 @@
 setannotation(do_setarrayitem_gc_int, annmodel.s_None)
 setannotation(do_setarrayitem_gc_ptr, annmodel.s_None)
 setannotation(do_setarrayitem_gc_float, annmodel.s_None)
+setannotation(do_setarrayitem_raw_int, annmodel.s_None)
+setannotation(do_setarrayitem_raw_float, annmodel.s_None)
 setannotation(do_setfield_gc_int, annmodel.s_None)
 setannotation(do_setfield_gc_ptr, annmodel.s_None)
 setannotation(do_setfield_gc_float, annmodel.s_None)



More information about the Pypy-commit mailing list