[pypy-commit] pypy default: put 32bit indication just after the version

plan_rich pypy.commits at gmail.com
Mon Jul 25 15:12:57 EDT 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: 
Changeset: r85865:1668dc360f19
Date: 2016-07-25 18:14 +0200
http://bitbucket.org/pypy/pypy/changeset/1668dc360f19/

Log:	put 32bit indication just after the version

diff --git a/rpython/rlib/rjitlog/rjitlog.py b/rpython/rlib/rjitlog/rjitlog.py
--- a/rpython/rlib/rjitlog/rjitlog.py
+++ b/rpython/rlib/rjitlog/rjitlog.py
@@ -283,8 +283,8 @@
     is_32bit = chr(0x1)
     if not IS_32_BIT:
         is_32bit = chr(0x0)
-    content = [version, MARK_RESOP_META,
-               is_32bit, encode_le_16bit(count)]
+    content = [version, is_32bit, MARK_RESOP_META,
+               encode_le_16bit(count)]
     for opnum, opname in resoperations.opname.items():
         content.append(encode_le_16bit(opnum))
         content.append(encode_str(opname.lower()))


More information about the pypy-commit mailing list