[pypy-svn] r68998 - pypy/trunk/pypy/jit/metainterp
arigo at codespeak.net
arigo at codespeak.net
Thu Nov 5 18:45:28 CET 2009
Author: arigo
Date: Thu Nov 5 18:45:28 2009
New Revision: 68998
Modified:
pypy/trunk/pypy/jit/metainterp/history.py
pypy/trunk/pypy/jit/metainterp/resoperation.py
Log:
Kill the "XXX temp", now that it's clear that the corresponding
attributes are not used any more.
Modified: pypy/trunk/pypy/jit/metainterp/history.py
==============================================================================
--- pypy/trunk/pypy/jit/metainterp/history.py (original)
+++ pypy/trunk/pypy/jit/metainterp/history.py Thu Nov 5 18:45:28 2009
@@ -685,7 +685,6 @@
inputargs = None
operations = None
token = None
- specnodes = property(lambda x: crash, lambda x, y: crash) # XXX temp
def __init__(self, name):
self.name = name
Modified: pypy/trunk/pypy/jit/metainterp/resoperation.py
==============================================================================
--- pypy/trunk/pypy/jit/metainterp/resoperation.py (original)
+++ pypy/trunk/pypy/jit/metainterp/resoperation.py Thu Nov 5 18:45:28 2009
@@ -4,12 +4,7 @@
class ResOperation(object):
"""The central ResOperation class, representing one operation."""
- # for 'jump': points to the target loop;
- jump_target = property(lambda x: crash, lambda x, y: crash) # XXX temp
-
# for 'guard_*'
- suboperations = property(lambda x: crash, lambda x, y: crash) # XXX temp
- optimized = property(lambda x: crash, lambda x, y: crash) # XXX temp
fail_args = None
# debug
More information about the Pypy-commit
mailing list