Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r63484:e64058419d45
Date: 2013-04-18 21:46 +0200
http://bitbucket.org/pypy/pypy/changeset/e64058419d45/

Log:    fix translation on ARM, I believe

diff --git a/rpython/jit/backend/arm/assembler.py 
b/rpython/jit/backend/arm/assembler.py
--- a/rpython/jit/backend/arm/assembler.py
+++ b/rpython/jit/backend/arm/assembler.py
@@ -249,7 +249,9 @@
         else:
             self.wb_slowpath[withcards + 2 * withfloats] = rawstart
 
-    def _build_malloc_slowpath(self):
+    def _build_malloc_slowpath(self, kind):
+        if kind != 'fixed':
+            return 0
         mc = InstrBuilder(self.cpu.arch_version)
         self._push_all_regs_to_jitframe(mc, [r.r0, r.r1], 
self.cpu.supports_floats)
         ofs = self.cpu.get_ofs_of_frame_field('jf_gcmap')
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to