[pypy-commit] pypy jit-leaner-frontend: These two methods are not used and not tested

arigo pypy.commits at gmail.com
Thu Mar 10 09:42:10 EST 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: jit-leaner-frontend
Changeset: r82940:d8fb92d44ac9
Date: 2016-03-10 15:41 +0100
http://bitbucket.org/pypy/pypy/changeset/d8fb92d44ac9/

Log:	These two methods are not used and not tested

diff --git a/rpython/jit/metainterp/opencoder.py b/rpython/jit/metainterp/opencoder.py
--- a/rpython/jit/metainterp/opencoder.py
+++ b/rpython/jit/metainterp/opencoder.py
@@ -226,6 +226,7 @@
         return pos
 
     def _record_raw(self, opnum, tagged_args, tagged_descr=-1):
+        NOT_USED
         operations = self._ops
         pos = self._count
         operations.append(opnum)
@@ -260,6 +261,7 @@
         return ResOperation(opnum, argboxes, pos, descr)
 
     def record_op_tag(self, opnum, tagged_args, descr=None):
+        NOT_USED
         return tag(TAGBOX, self._record_raw(opnum, tagged_args, descr))
 
     def record_snapshot(self, jitcode, pc, active_boxes):


More information about the pypy-commit mailing list