Author: Richard Plangger <[email protected]>
Branch: vecopt-merge
Changeset: r79036:483562ca6a0f
Date: 2015-08-18 13:14 +0200
http://bitbucket.org/pypy/pypy/changeset/483562ca6a0f/
Log: vec_params in interp_jit.py must be a separate case to wrap it in a
w_str
diff --git a/pypy/module/pypyjit/interp_jit.py
b/pypy/module/pypyjit/interp_jit.py
--- a/pypy/module/pypyjit/interp_jit.py
+++ b/pypy/module/pypyjit/interp_jit.py
@@ -137,6 +137,8 @@
for key, w_value in kwds_w.items():
if key == 'enable_opts':
jit.set_param(None, 'enable_opts', space.str_w(w_value))
+ elif key == 'vec_params':
+ jit.set_param(None, 'vec_params', space.str_w(w_value))
else:
intval = space.int_w(w_value)
for name, _ in unroll_parameters:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit