[pypy-commit] pypy vmprof: a bit blind fix

fijal noreply at buildbot.pypy.org
Thu Feb 5 12:18:42 CET 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: vmprof
Changeset: r75719:f2c96b90445b
Date: 2015-02-05 12:58 +0200
http://bitbucket.org/pypy/pypy/changeset/f2c96b90445b/

Log:	a bit blind fix

diff --git a/rpython/jit/backend/arm/regalloc.py b/rpython/jit/backend/arm/regalloc.py
--- a/rpython/jit/backend/arm/regalloc.py
+++ b/rpython/jit/backend/arm/regalloc.py
@@ -392,6 +392,9 @@
         else:
             self.rm._sync_var(v)
 
+    def prepare_op_debug_merge_point(self, op, fcond):
+        self.assembler.codemap.debug_merge_point(op)
+
     def _prepare_op_int_add(self, op, fcond):
         boxes = op.getarglist()
         a0, a1 = boxes


More information about the pypy-commit mailing list