Author: Matti Picus <matti.pi...@gmail.com>
Branch: 
Changeset: r94380:51718fe91a11
Date: 2018-04-19 11:20 +0300
http://bitbucket.org/pypy/pypy/changeset/51718fe91a11/

Log:    fix llinterp debug_{start,stop} on 32bit - one more time

diff --git a/rpython/rlib/debug.py b/rpython/rlib/debug.py
--- a/rpython/rlib/debug.py
+++ b/rpython/rlib/debug.py
@@ -133,7 +133,7 @@
             opname = fn.__name__[1:] # remove the '_'
             return hop.genop(opname, vlist, resulttype=TIMESTAMP_type)
         else:
-            return hop.inputconst(TIMESTAMP_type, 0)
+            return hop.inputconst(TIMESTAMP_type, r_longlong(0))
 
 
 def have_debug_prints():
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to