Author: Lukas Diekmann <lukas.diekm...@uni-duesseldorf.de> Branch: list-strategies Changeset: r47715:5f833273693d Date: 2011-09-30 15:56 +0200 http://bitbucket.org/pypy/pypy/changeset/5f833273693d/
Log: (l.diekmann, cfbolz): this list is now an integer list diff --git a/pypy/module/pypyjit/test_pypy_c/test_call.py b/pypy/module/pypyjit/test_pypy_c/test_call.py --- a/pypy/module/pypyjit/test_pypy_c/test_call.py +++ b/pypy/module/pypyjit/test_pypy_c/test_call.py @@ -338,13 +338,12 @@ i13 = getfield_gc(p8, descr=<SignedFieldDescr list.length .*>) i15 = int_add(i13, 1) # Will be killed by the backend - i17 = arraylen_gc(p7, descr=<GcPtrArrayDescr>) - call(ConstClass(_ll_list_resize_ge), p8, i15, descr=<VoidCallDescr>) + p15 = getfield_gc(p8, descr=<GcPtrFieldDescr list.items .*>) + i17 = arraylen_gc(p15, descr=<SignedArrayDescr>) + call(ConstClass(_ll_list_resize_ge_trampoline__v232___simple_call__function__), p8, i15, descr=<VoidCallDescr>) guard_no_exception(descr=...) p17 = getfield_gc(p8, descr=<GcPtrFieldDescr list.items .*>) - p19 = new_with_vtable(ConstClass(W_IntObject)) - setfield_gc(p19, i12, descr=<SignedFieldDescr .*W_IntObject.inst_intval .*>) - setarrayitem_gc(p17, i13, p19, descr=<GcPtrArrayDescr>) + setarrayitem_gc(p17, i13, i12, descr=<SignedArrayDescr>) """) def test_blockstack_virtualizable(self): _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit