We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b9177a commit 103c2c7Copy full SHA for 103c2c7
Include/internal/pycore_opcode_utils.h
@@ -61,7 +61,8 @@ extern "C" {
61
(opcode) == LOAD_CONST__LOAD_FAST || \
62
(opcode) == STORE_FAST__LOAD_FAST || \
63
(opcode) == STORE_FAST__STORE_FAST) || \
64
- (opcode) == POP_TOP__STORE_FAST
+ (opcode) == POP_TOP__POP_TOP || \
65
+ (opcode) == POP_TOP__STORE_FAST ||
66
67
68
#define LOG_BITS_PER_INT 5
Python/instrumentation.c
@@ -1493,6 +1493,7 @@ static const uint8_t super_instructions[256] = {
1493
[STORE_FAST__LOAD_FAST] = 1,
1494
[STORE_FAST__STORE_FAST] = 1,
1495
[LOAD_CONST__LOAD_FAST] = 1,
1496
+ [POP_TOP__POP_TOP] = 1,
1497
[POP_TOP__STORE_FAST] = 1,
1498
};
1499
0 commit comments