[pypy-svn] pypy default: Fix on 64-bits.

arigo commits-noreply at bitbucket.org
Sun Feb 13 15:35:23 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r41873:c2afb329a2d8
Date: 2011-02-13 15:30 +0100
http://bitbucket.org/pypy/pypy/changeset/c2afb329a2d8/

Log:	Fix on 64-bits.

diff --git a/pypy/jit/backend/llgraph/runner.py b/pypy/jit/backend/llgraph/runner.py
--- a/pypy/jit/backend/llgraph/runner.py
+++ b/pypy/jit/backend/llgraph/runner.py
@@ -86,7 +86,7 @@
 
 class BaseCPU(model.AbstractCPU):
     supports_floats = True
-    supports_longlong = True
+    supports_longlong = llimpl.IS_32_BIT
 
     def __init__(self, rtyper, stats=None, opts=None,
                  translate_support_code=False,


More information about the Pypy-commit mailing list