Skip to content

Commit 2aaafd2

Browse files
committed
add pop_3_error
1 parent f392667 commit 2aaafd2

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

Python/bytecodes.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5453,6 +5453,12 @@ dummy_func(
54535453
}
54545454
}
54555455

5456+
label(pop_3_error) {
5457+
stack_pointer -= 3;
5458+
assert(WITHIN_STACK_BOUNDS());
5459+
goto error;
5460+
}
5461+
54565462
label(pop_2_error) {
54575463
stack_pointer -= 2;
54585464
assert(WITHIN_STACK_BOUNDS());

Python/generated_cases.c.h

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/opcode_targets.h

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)