[pypy-commit] pypy default: remove change only needed by ppc vector ext branch

plan_rich pypy.commits at gmail.com
Tue Aug 16 06:56:38 EDT 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: 
Changeset: r86221:c2da100e9466
Date: 2016-08-16 12:55 +0200
http://bitbucket.org/pypy/pypy/changeset/c2da100e9466/

Log:	remove change only needed by ppc vector ext branch

diff --git a/rpython/rlib/rawstorage.py b/rpython/rlib/rawstorage.py
--- a/rpython/rlib/rawstorage.py
+++ b/rpython/rlib/rawstorage.py
@@ -48,8 +48,7 @@
 try:
     cpuname = detect_cpu.autodetect()
     misaligned_is_fine = cpuname.startswith('x86') or \
-                         cpuname.startswith('s390x') or \
-                         cpuname.startswith('ppc')
+                         cpuname.startswith('s390x')
     del cpuname
 except detect_cpu.ProcessorAutodetectError:
     misaligned_is_fine = False


More information about the pypy-commit mailing list