[pypy-svn] r74997 - pypy/branch/blackhole-improvement/pypy/module/pypyjit/test

arigo at codespeak.net arigo at codespeak.net
Tue Jun 1 12:07:12 CEST 2010


Author: arigo
Date: Tue Jun  1 12:07:11 2010
New Revision: 74997

Modified:
   pypy/branch/blackhole-improvement/pypy/module/pypyjit/test/test_pypy_c.py
Log:
Increase the numbers.  This is due to the fact that we don't generate
any more "guard_isnull" for non-gc pointers.  There are skipped tests
in test_optimizeopt about performing the same kind of guard removal
that we do for guard_isnull, but it's not completely trivial.



Modified: pypy/branch/blackhole-improvement/pypy/module/pypyjit/test/test_pypy_c.py
==============================================================================
--- pypy/branch/blackhole-improvement/pypy/module/pypyjit/test/test_pypy_c.py	(original)
+++ pypy/branch/blackhole-improvement/pypy/module/pypyjit/test/test_pypy_c.py	Tue Jun  1 12:07:11 2010
@@ -222,7 +222,7 @@
                 while i < n+OFFSET:
                     i = f(f(i))
                 return i
-        ''', 96,
+        ''', 98,
                    ([20], 20),
                     ([31], 32))
         ops = self.get_by_bytecode("LOAD_GLOBAL")
@@ -263,7 +263,7 @@
                     x = a.f(i)
                     i = a.f(x)
                 return i
-        ''', 92,
+        ''', 93,
                    ([20], 20),
                     ([31], 32))
         ops = self.get_by_bytecode("LOOKUP_METHOD")
@@ -308,7 +308,7 @@
                     x = a.f(i)
                     i = a.g(x)
                 return i
-        ''', 105,
+        ''', 106,
                    ([20], 20),
                    ([31], 31))
         ops = self.get_by_bytecode("LOOKUP_METHOD")



More information about the Pypy-commit mailing list