Author: Alex Gaynor <[email protected]> Branch: extradoc Changeset: r4974:6460bc5634c4 Date: 2013-06-09 09:24 -0700 http://bitbucket.org/pypy/extradoc/changeset/6460bc5634c4/
Log: added two missed optimizations diff --git a/planning/jit.txt b/planning/jit.txt --- a/planning/jit.txt +++ b/planning/jit.txt @@ -77,6 +77,11 @@ - calling string equality does not automatically promote the argument to a constant. +- i0 = int_add_ovf(9223372036854775807, 1) + guard_overflow() + +- p0 = call_pure(ConstClass(something), ConstPtr(2)) + guard_exception(SomeException) PYTHON EXAMPLES --------------- _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
