summaryrefslogtreecommitdiffstats
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index e8383ed..ddada96 100644
--- a/Python/bytecodes.c
+++ b/Python/bytecodes.c
@@ -4133,7 +4133,7 @@ dummy_func(
}
tier2 op(_EXIT_TRACE, (--)) {
- EXIT_IF(1);
+ EXIT_TO_TRACE();
}
tier2 op(_CHECK_VALIDITY, (--)) {
@@ -4266,10 +4266,6 @@ dummy_func(
EXIT_TO_TIER1();
}
- tier2 op(_SIDE_EXIT, (--)) {
- EXIT_TO_TRACE();
- }
-
tier2 op(_ERROR_POP_N, (target/2, unused[oparg] --)) {
frame->instr_ptr = ((_Py_CODEUNIT *)_PyFrame_GetCode(frame)->co_code_adaptive) + target;
SYNC_SP();