[pypy-commit] pypy math-improvements: Fix ulllong division OP in rtyper

stian pypy.commits at gmail.com
Sun Nov 12 15:14:07 EST 2017


Author: stian
Branch: math-improvements
Changeset: r92997:8b41193b43b2
Date: 2017-11-12 21:10 +0100
http://bitbucket.org/pypy/pypy/changeset/8b41193b43b2/

Log:	Fix ulllong division OP in rtyper

diff --git a/rpython/rtyper/rint.py b/rpython/rtyper/rint.py
--- a/rpython/rtyper/rint.py
+++ b/rpython/rtyper/rint.py
@@ -476,7 +476,7 @@
 
 @jit.dont_look_inside
 def ll_ulllong_py_div(x, y):
-    return llop.ullong_floordiv(UnsignedLongLongLong, x, y)
+    return llop.ulllong_floordiv(UnsignedLongLongLong, x, y)
 
 def ll_ulllong_py_div_zer(x, y):
     if y == 0:


More information about the pypy-commit mailing list