Author: Armin Rigo <ar...@tunes.org>
Branch: all_ordered_dicts
Changeset: r75356:72231428d947
Date: 2015-01-15 17:04 +0100
http://bitbucket.org/pypy/pypy/changeset/72231428d947/

Log:    fix

diff --git a/rpython/jit/metainterp/optimizeopt/heap.py 
b/rpython/jit/metainterp/optimizeopt/heap.py
--- a/rpython/jit/metainterp/optimizeopt/heap.py
+++ b/rpython/jit/metainterp/optimizeopt/heap.py
@@ -361,7 +361,7 @@
             return False
         else:
             if flag != FLAG_LOOKUP:
-                if not res_v.intbound.known_ge(IntBound(0, 0)):
+                if not res_v.getintbound().known_ge(IntBound(0, 0)):
                     return False
             self.make_equal_to(op.result, res_v)
             self.last_emitted_operation = REMOVED
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to