[pypy-svn] r76067 - pypy/branch/kill-caninline/pypy/jit/metainterp/test

arigo at codespeak.net arigo at codespeak.net
Fri Jul 9 12:39:17 CEST 2010


Author: arigo
Date: Fri Jul  9 12:39:16 2010
New Revision: 76067

Modified:
   pypy/branch/kill-caninline/pypy/jit/metainterp/test/test_jitdriver.py
Log:
Fix test.


Modified: pypy/branch/kill-caninline/pypy/jit/metainterp/test/test_jitdriver.py
==============================================================================
--- pypy/branch/kill-caninline/pypy/jit/metainterp/test/test_jitdriver.py	(original)
+++ pypy/branch/kill-caninline/pypy/jit/metainterp/test/test_jitdriver.py	Fri Jul  9 12:39:16 2010
@@ -45,7 +45,6 @@
         # this is not an example of reasonable code: loop1() is unrolled
         # 'n/m' times, where n and m are given as red arguments.
         myjitdriver1 = JitDriver(greens=[], reds=['n', 'm'],
-                                 can_inline = lambda *args: True,
                                  get_printable_location = getloc1)
         myjitdriver2 = JitDriver(greens=['g'], reds=['r'],
                                  get_printable_location = getloc2)



More information about the Pypy-commit mailing list