Author: hager <sven.ha...@uni-duesseldorf.de>
Branch: ppc-jit-backend-rpythonization
Changeset: r52199:11b80f0c5896
Date: 2012-02-07 09:19 -0800
http://bitbucket.org/pypy/pypy/changeset/11b80f0c5896/

Log:    (bivab, hager): disable codepath until gc support is in place

diff --git a/pypy/jit/backend/ppc/ppcgen/regalloc.py 
b/pypy/jit/backend/ppc/ppcgen/regalloc.py
--- a/pypy/jit/backend/ppc/ppcgen/regalloc.py
+++ b/pypy/jit/backend/ppc/ppcgen/regalloc.py
@@ -522,7 +522,8 @@
         self.assembler.emit_call(op, args, self, fail_index)
         # then reopen the stack
         if gcrootmap:
-            self.assembler.call_reacquire_gil(gcrootmap, r.r0, fcond)
+            assert 0, "not implemented yet"
+            # self.assembler.call_reacquire_gil(gcrootmap, registers)
         locs = self._prepare_guard(guard_op)
         self.possibly_free_vars(guard_op.getfailargs())
         return locs
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to