[pypy-commit] pypy better-jit-hooks: Add an option to recognize "x86_32" too.

arigo noreply at buildbot.pypy.org
Wed Jan 11 19:12:00 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: better-jit-hooks
Changeset: r51241:7435bc0b9fa2
Date: 2012-01-11 18:57 +0100
http://bitbucket.org/pypy/pypy/changeset/7435bc0b9fa2/

Log:	Add an option to recognize "x86_32" too.

diff --git a/pypy/jit/backend/x86/tool/viewcode.py b/pypy/jit/backend/x86/tool/viewcode.py
--- a/pypy/jit/backend/x86/tool/viewcode.py
+++ b/pypy/jit/backend/x86/tool/viewcode.py
@@ -39,6 +39,7 @@
 def machine_code_dump(data, originaddr, backend_name, label_list=None):
     objdump_backend_option = {
         'x86': 'i386',
+        'x86_32': 'i386',
         'x86_64': 'x86-64',
         'i386': 'i386',
     }


More information about the pypy-commit mailing list