Author: Richard Plangger <[email protected]>
Branch: ppc-vsx-support
Changeset: r88081:58c1cfa77a55
Date: 2016-11-02 14:38 +0100
http://bitbucket.org/pypy/pypy/changeset/58c1cfa77a55/
Log: vector_ext object should never be None, move it to abstract base
class (it is enabled at runtime)
diff --git a/rpython/jit/backend/x86/runner.py
b/rpython/jit/backend/x86/runner.py
--- a/rpython/jit/backend/x86/runner.py
+++ b/rpython/jit/backend/x86/runner.py
@@ -22,6 +22,8 @@
with_threads = False
frame_reg = regloc.ebp
+ vector_ext = X86VectorExt()
+
# can an ISA instruction handle a factor to the offset?
load_supported_factors = (1,2,4,8)
@@ -146,7 +148,6 @@
supports_longlong = False
class CPU_X86_64(AbstractX86CPU):
- vector_ext = X86VectorExt()
backend_name = 'x86_64'
NUM_REGS = 16
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit