[pypy-commit] pypy jit-duplicated_short_boxes: this case is too complicated without duplication

hakanardo noreply at buildbot.pypy.org
Sun Sep 4 10:59:54 CEST 2011


Author: Hakan Ardo <hakan at debian.org>
Branch: jit-duplicated_short_boxes
Changeset: r47056:ea8b9810ad9b
Date: 2011-09-04 10:21 +0200
http://bitbucket.org/pypy/pypy/changeset/ea8b9810ad9b/

Log:	this case is too complicated without duplication

diff --git a/pypy/module/pypyjit/test_pypy_c/test_misc.py b/pypy/module/pypyjit/test_pypy_c/test_misc.py
--- a/pypy/module/pypyjit/test_pypy_c/test_misc.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_misc.py
@@ -116,6 +116,9 @@
             guard_not_invalidated(descr=...)
             i13 = int_add_ovf(i8, i9)
             guard_no_overflow(descr=...)
+            i10p = getfield_gc_pure(p10, descr=...)
+            i10 = int_mul_ovf(2, i10p)
+            guard_no_overflow(descr=...)
             i14 = int_add_ovf(i13, i10)
             guard_no_overflow(descr=...)
             setfield_gc(p7, p11, descr=...)


More information about the pypy-commit mailing list