[pypy-commit] pypy arm-backend-2: actually call malloc when emitting call_malloc_gc

bivab noreply at buildbot.pypy.org
Fri Dec 30 17:13:11 CET 2011


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r50965:aad89a4cbc45
Date: 2011-12-30 17:12 +0100
http://bitbucket.org/pypy/pypy/changeset/aad89a4cbc45/

Log:	actually call malloc when emitting call_malloc_gc

diff --git a/pypy/jit/backend/arm/opassembler.py b/pypy/jit/backend/arm/opassembler.py
--- a/pypy/jit/backend/arm/opassembler.py
+++ b/pypy/jit/backend/arm/opassembler.py
@@ -1189,6 +1189,7 @@
     _mixin_ = True
 
     def emit_op_call_malloc_gc(self, op, arglocs, regalloc, fcond):
+        self.emit_op_call(op, arglocs, regalloc, fcond)
         self.propagate_memoryerror_if_r0_is_null()
         return fcond
 


More information about the pypy-commit mailing list