[pypy-commit] pypy list-strategies: specialization always gives this functions different names, so just use "_" here.

cfbolz noreply at buildbot.pypy.org
Tue Oct 4 15:03:03 CEST 2011


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: list-strategies
Changeset: r47819:fe769d7ec5a2
Date: 2011-10-04 11:51 +0200
http://bitbucket.org/pypy/pypy/changeset/fe769d7ec5a2/

Log:	specialization always gives this functions different names, so just
	use "_" here.

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
@@ -340,7 +340,7 @@
             # Will be killed by the backend
             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>)
+            call(_, p8, i15, descr=<VoidCallDescr>) # this is a call to _ll_list_resize_ge_trampoline__...
             guard_no_exception(descr=...)
             p17 = getfield_gc(p8, descr=<GcPtrFieldDescr list.items .*>)
             setarrayitem_gc(p17, i13, i12, descr=<SignedArrayDescr>)


More information about the pypy-commit mailing list