[pypy-commit] pypy default: better this way

arigo noreply at buildbot.pypy.org
Thu Feb 27 15:46:35 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r69517:c6cf3d3bc3a6
Date: 2014-02-27 15:45 +0100
http://bitbucket.org/pypy/pypy/changeset/c6cf3d3bc3a6/

Log:	better this way

diff --git a/rpython/jit/codewriter/call.py b/rpython/jit/codewriter/call.py
--- a/rpython/jit/codewriter/call.py
+++ b/rpython/jit/codewriter/call.py
@@ -247,14 +247,14 @@
                 from rpython.jit.codewriter.policy import log; log.WARNING(
                 "in operation %r: this calls a _jit_loop_invariant_ function,"
                 " but this contradicts other sources (e.g. it can have random"
-                " effects, code %s)" % (op, extraeffect))
+                " effects): EF=%s" % (op, extraeffect))
         if elidable:
             if extraeffect not in (EffectInfo.EF_ELIDABLE_CANNOT_RAISE,
                                    EffectInfo.EF_ELIDABLE_CAN_RAISE):
                 from rpython.jit.codewriter.policy import log; log.WARNING(
                 "in operation %r: this calls an _elidable_function_,"
                 " but this contradicts other sources (e.g. it can have random"
-                " effects, code %s)" % (op, extraeffect))
+                " effects): EF=%s" % (op, extraeffect))
         #
         effectinfo = effectinfo_from_writeanalyze(
             self.readwrite_analyzer.analyze(op, self.seen), self.cpu,


More information about the pypy-commit mailing list