mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
GH-125515: Remove two unused error branches. (#133181)
Remove two unused error branches in the generated bytecode handling.
This commit is contained in:
parent
327f5ff9fa
commit
6c522debc2
3 changed files with 0 additions and 28 deletions
|
@ -5332,18 +5332,6 @@ dummy_func(
|
|||
assert(tstate->tracing || eval_breaker == FT_ATOMIC_LOAD_UINTPTR_ACQUIRE(_PyFrame_GetCode(frame)->_co_instrumentation_version));
|
||||
}
|
||||
|
||||
label(pop_4_error) {
|
||||
stack_pointer -= 4;
|
||||
assert(WITHIN_STACK_BOUNDS());
|
||||
goto error;
|
||||
}
|
||||
|
||||
label(pop_3_error) {
|
||||
stack_pointer -= 3;
|
||||
assert(WITHIN_STACK_BOUNDS());
|
||||
goto error;
|
||||
}
|
||||
|
||||
label(pop_2_error) {
|
||||
stack_pointer -= 2;
|
||||
assert(WITHIN_STACK_BOUNDS());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue