[pypy-commit] pypy small-unroll-improvements: there's an extra guard (which is optimized away)

cfbolz noreply at buildbot.pypy.org
Tue Apr 22 10:40:55 CEST 2014


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: small-unroll-improvements
Changeset: r70849:af2d6463e471
Date: 2014-04-22 10:39 +0200
http://bitbucket.org/pypy/pypy/changeset/af2d6463e471/

Log:	there's an extra guard (which is optimized away)

diff --git a/rpython/jit/tool/test/test_jitoutput.py b/rpython/jit/tool/test/test_jitoutput.py
--- a/rpython/jit/tool/test/test_jitoutput.py
+++ b/rpython/jit/tool/test/test_jitoutput.py
@@ -38,7 +38,7 @@
     assert info.ops.total == 2
     assert info.recorded_ops.total == 2
     assert info.recorded_ops.calls == 0
-    assert info.guards == 1
+    assert info.guards == 2
     assert info.opt_ops == 13
     assert info.opt_guards == 2
     assert info.forcings == 0


More information about the pypy-commit mailing list