[pypy-commit] pypy optresult-unroll: fix a test

fijal noreply at buildbot.pypy.org
Tue Aug 25 09:29:23 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: optresult-unroll
Changeset: r79213:01cd081f0249
Date: 2015-08-24 14:02 +0200
http://bitbucket.org/pypy/pypy/changeset/01cd081f0249/

Log:	fix a test

diff --git a/rpython/jit/metainterp/test/test_ajit.py b/rpython/jit/metainterp/test/test_ajit.py
--- a/rpython/jit/metainterp/test/test_ajit.py
+++ b/rpython/jit/metainterp/test/test_ajit.py
@@ -3660,7 +3660,7 @@
             return n
         res = self.meta_interp(f, [10])
         assert res == 0
-        self.check_resops({'int_gt': 2, 'getfield_gc': 1, 'int_eq': 1,
+        self.check_resops({'int_gt': 2, 'getfield_gc_i': 1, 'int_eq': 1,
                            'guard_true': 2, 'int_sub': 2, 'jump': 1,
                            'guard_false': 1})
 


More information about the pypy-commit mailing list