diff options
Diffstat (limited to 'Python/bytecodes.c')
| -rw-r--r-- | Python/bytecodes.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 65f411f..a236702 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -344,6 +344,11 @@ dummy_func( PyStackRef_CLOSE(value); } + tier2 op(_POP_TWO, (nos, tos --)) { + PyStackRef_CLOSE(tos); + PyStackRef_CLOSE(nos); + } + pure inst(PUSH_NULL, (-- res)) { res = PyStackRef_NULL; } |
