[pypy-svn] r67175 - pypy/branch/pyjitpl5/pypy/jit/metainterp/test

arigo at codespeak.net arigo at codespeak.net
Tue Aug 25 09:16:19 CEST 2009


Author: arigo
Date: Tue Aug 25 09:16:16 2009
New Revision: 67175

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_tl.py
Log:
This fix is probably related to the introduction
of ConstantSpecNode.


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_tl.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_tl.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/test/test_tl.py	Tue Aug 25 09:16:16 2009
@@ -100,15 +100,14 @@
         assert res == 5040
         self.check_loops({'int_mul':1, 'jump':1,
                           'int_sub':1, 'int_is_true':1, 'int_le':1,
-                          'guard_false':1, 'guard_value':1})
+                          'guard_false':1})
 
     def test_tl_2(self):
         res = self.meta_interp(self.main.im_func, [1, 10], listops=True,
                                backendopt=True)
         assert res == self.main.im_func(1, 10)
         self.check_loops({'int_sub':1, 'int_le':1,
-                         'int_is_true':1, 'guard_false':1, 'jump':1,
-                          'guard_value':1})
+                         'int_is_true':1, 'guard_false':1, 'jump':1})
 
     def test_tl_call(self, listops=True, policy=None):
         from pypy.jit.tl.tl import interp



More information about the Pypy-commit mailing list