[pypy-svn] pypy default: typo

hakanardo commits-noreply at bitbucket.org
Wed Feb 2 08:37:14 CET 2011


Author: Hakan Ardo <hakan at debian.org>
Branch: 
Changeset: r41537:974e5556eb09
Date: 2011-02-02 08:36 +0100
http://bitbucket.org/pypy/pypy/changeset/974e5556eb09/

Log:	typo

diff --git a/pypy/jit/metainterp/test/test_virtual.py b/pypy/jit/metainterp/test/test_virtual.py
--- a/pypy/jit/metainterp/test/test_virtual.py
+++ b/pypy/jit/metainterp/test/test_virtual.py
@@ -440,7 +440,7 @@
                 myjitdriver.jit_merge_point(n=n, sa=sa, node1=node1, node2=node2)
                 if n>10:
                     next = self._new()
-                    next.value += 2
+                    next.value = node1.value + 2
                     node1 = next
                 else:
                     node2.ref.value += 3


More information about the Pypy-commit mailing list