summaryrefslogtreecommitdiff
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index 82c1004441..1c09dc6be3 100644
--- a/Python/bytecodes.c
+++ b/Python/bytecodes.c
@@ -813,7 +813,7 @@ dummy_func(
PREDICT(LOAD_CONST);
}
- family(for_iter, INLINE_CACHE_ENTRIES_FOR_ITER) = {
+ family(send, INLINE_CACHE_ENTRIES_SEND) = {
SEND,
SEND_GEN,
};
@@ -866,7 +866,7 @@ dummy_func(
Py_DECREF(v);
}
- inst(SEND_GEN, (unused/1, receiver, v -- receiver)) {
+ inst(SEND_GEN, (unused/1, receiver, v -- receiver, unused)) {
PyGenObject *gen = (PyGenObject *)receiver;
DEOPT_IF(Py_TYPE(gen) != &PyGen_Type &&
Py_TYPE(gen) != &PyCoro_Type, SEND);