[pypy-commit] pypy ppc-vsx-support: provided wrong constant to imm construction

plan_rich pypy.commits at gmail.com
Thu Oct 27 05:15:37 EDT 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: ppc-vsx-support
Changeset: r87956:b760c9f05b2e
Date: 2016-10-27 11:14 +0200
http://bitbucket.org/pypy/pypy/changeset/b760c9f05b2e/

Log:	provided wrong constant to imm construction

diff --git a/rpython/jit/backend/zarch/locations.py b/rpython/jit/backend/zarch/locations.py
--- a/rpython/jit/backend/zarch/locations.py
+++ b/rpython/jit/backend/zarch/locations.py
@@ -247,7 +247,7 @@
     from rpython.jit.backend.zarch.registers import JITFRAME_FIXED_SIZE
     return base_ofs + WORD * (position + JITFRAME_FIXED_SIZE)
 
-imm3 = imm(1)
+imm3 = imm(3)
 imm1 = imm(1)
 imm0 = imm(0)
 


More information about the pypy-commit mailing list