Author: Armin Rigo <[email protected]>
Branch: reverse-debugger-updated
Changeset: r94560:2fe38255fdb8
Date: 2018-05-14 11:10 +0200
http://bitbucket.org/pypy/pypy/changeset/2fe38255fdb8/
Log: Fix some tests
diff --git a/rpython/rtyper/lltypesystem/lloperation.py
b/rpython/rtyper/lltypesystem/lloperation.py
--- a/rpython/rtyper/lltypesystem/lloperation.py
+++ b/rpython/rtyper/lltypesystem/lloperation.py
@@ -606,7 +606,7 @@
'revdb_dtoa': LLOp(sideeffects=False),
'revdb_modf': LLOp(sideeffects=False),
'revdb_frexp': LLOp(sideeffects=False),
- 'revdb_do_next_call': LLOp(),
+ 'revdb_do_next_call': LLOp(canrun=True),
}
# ***** Run test_lloperation after changes. *****
diff --git a/rpython/rtyper/lltypesystem/opimpl.py
b/rpython/rtyper/lltypesystem/opimpl.py
--- a/rpython/rtyper/lltypesystem/opimpl.py
+++ b/rpython/rtyper/lltypesystem/opimpl.py
@@ -765,6 +765,9 @@
def op_gc_move_out_of_nursery(obj):
return obj
+def op_revdb_do_next_call():
+ pass
+
# ____________________________________________________________
def get_op_impl(opname):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit