[pypy-commit] pypy jitframe-on-heap: er, I'm a moron

fijal noreply at buildbot.pypy.org
Tue Feb 12 16:39:13 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r61138:ad46b2046728
Date: 2013-02-12 17:38 +0200
http://bitbucket.org/pypy/pypy/changeset/ad46b2046728/

Log:	er, I'm a moron

diff --git a/rpython/jit/backend/llsupport/jitframe.py b/rpython/jit/backend/llsupport/jitframe.py
--- a/rpython/jit/backend/llsupport/jitframe.py
+++ b/rpython/jit/backend/llsupport/jitframe.py
@@ -5,7 +5,7 @@
 from rpython.rlib.objectmodel import enforceargs
 
 SIZEOFSIGNED = rffi.sizeof(lltype.Signed)
-IS_32BIT = (SIZEOFSIGNED == 2 ** 31 - 1)
+IS_32BIT = (SIZEOFSIGNED == 4)
 
 # this is an info that only depends on the assembler executed, copied from
 # compiled loop token (in fact we could use this as a compiled loop token


More information about the pypy-commit mailing list