[pypy-svn] r60752 - in pypy/branch/oo-jit/pypy/rpython: . lltypesystem
arigo at codespeak.net
arigo at codespeak.net
Thu Jan 1 18:31:59 CET 2009
Author: arigo
Date: Thu Jan 1 18:31:59 2009
New Revision: 60752
Modified:
pypy/branch/oo-jit/pypy/rpython/llinterp.py
pypy/branch/oo-jit/pypy/rpython/lltypesystem/opimpl.py
Log:
Move this to llinterp, to make test_lloperation happy.
Modified: pypy/branch/oo-jit/pypy/rpython/llinterp.py
==============================================================================
--- pypy/branch/oo-jit/pypy/rpython/llinterp.py (original)
+++ pypy/branch/oo-jit/pypy/rpython/llinterp.py Thu Jan 1 18:31:59 2009
@@ -541,6 +541,9 @@
def op_jit_marker(self, *args):
pass
+ def op_promote_virtualizable(self, object, fieldname):
+ pass
+
def op_instrument_count(self, ll_tag, ll_label):
pass # xxx for now
Modified: pypy/branch/oo-jit/pypy/rpython/lltypesystem/opimpl.py
==============================================================================
--- pypy/branch/oo-jit/pypy/rpython/lltypesystem/opimpl.py (original)
+++ pypy/branch/oo-jit/pypy/rpython/lltypesystem/opimpl.py Thu Jan 1 18:31:59 2009
@@ -514,9 +514,6 @@
assert type(f) is float
return ovfcheck(int(f))
-def op_promote_virtualizable(object, fieldname):
- pass
-
# ____________________________________________________________
def get_op_impl(opname):
More information about the Pypy-commit
mailing list