[pypy-commit] pypy default: remove checking for IA-64 macros

bivab noreply at buildbot.pypy.org
Wed Apr 24 09:45:16 CEST 2013


Author: David Schneider <david.schneider at picle.org>
Branch: 
Changeset: r63585:d6e7467fc011
Date: 2013-04-24 09:44 +0200
http://bitbucket.org/pypy/pypy/changeset/d6e7467fc011/

Log:	remove checking for IA-64 macros

diff --git a/rpython/jit/backend/detect_cpu.py b/rpython/jit/backend/detect_cpu.py
--- a/rpython/jit/backend/detect_cpu.py
+++ b/rpython/jit/backend/detect_cpu.py
@@ -15,7 +15,6 @@
     mapping = {
             ('x86', '64'): [
                 '__amd64__', '__amd64', '__x86_64__', '__x86_64',  # AMD64
-                '__ia64__', '_IA64', '__IA64__'                    # Intel Itanium (IA-64)
                 ],
             ('arm', '32'): ['__arm__', '__thumb__'],
             ('x86', '32'): ['i386', '__i386', '__i386__', '__i686__',],


More information about the pypy-commit mailing list