[pypy-commit] pypy py3.6: Merged in djones6/pypy/dj_s390 (pull request #645)

arigo pypy.commits at gmail.com
Thu May 16 02:28:48 EDT 2019


Author: Armin Rigo <armin.rigo at gmail.com>
Branch: py3.6
Changeset: r96625:44324cb083f8
Date: 2019-05-16 06:28 +0000
http://bitbucket.org/pypy/pypy/changeset/44324cb083f8/

Log:	Merged in djones6/pypy/dj_s390 (pull request #645)

	Add s390x z14 support to gcc command

diff --git a/rpython/translator/platform/arch/s390x.py b/rpython/translator/platform/arch/s390x.py
old mode 100644
new mode 100755
--- a/rpython/translator/platform/arch/s390x.py
+++ b/rpython/translator/platform/arch/s390x.py
@@ -88,6 +88,8 @@
         return "zEC12"
     if machine == 0x2964:
         return "z13"
+    if machine == 0x3907:  # gcc supports z14 as of 2019/05/08
+	    return "z14"
 
     # well all others are unsupported!
     return "unknown"


More information about the pypy-commit mailing list