diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2025-04-30 00:21:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-30 00:21:14 (GMT) |
commit | b329096cfbebb60e0f5c3ea0a300f650d2004200 (patch) | |
tree | 7909f6c5cb3dc41d2f576331bb4ab24bddb97d19 /Python/generated_cases.c.h | |
parent | 42b0b0667e67ff444a03d0e7b217e77f3aae535d (diff) | |
download | cpython-b329096cfbebb60e0f5c3ea0a300f650d2004200.zip cpython-b329096cfbebb60e0f5c3ea0a300f650d2004200.tar.gz cpython-b329096cfbebb60e0f5c3ea0a300f650d2004200.tar.bz2 |
GH-125515: Mark code after "return" as unreachable in the cases generator (#133178)
Mark code after "return" as unreachable
Diffstat (limited to 'Python/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index 7d3e6c7..88ab86a 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -7464,9 +7464,6 @@ PyObject *result = PyStackRef_AsPyObjectSteal(retval); LLTRACE_RESUME_FRAME(); return result; - stack_pointer += -1; - assert(WITHIN_STACK_BOUNDS()); - DISPATCH(); } TARGET(IS_OP) { |