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 6cef072 commit 584015aCopy full SHA for 584015a
Python/optimizer.c
@@ -1278,9 +1278,6 @@ uop_optimize(
1278
buffer[pc].opcode = opcode + 1 + (oparg & 1);
1279
assert(strncmp(_PyOpcode_uop_name[buffer[pc].opcode], _PyOpcode_uop_name[opcode], strlen(_PyOpcode_uop_name[opcode])) == 0);
1280
}
1281
- else if (opcode == _PUSH_NULL_CONDITIONAL) {
1282
- buffer[pc].opcode = (oparg & 1) ? _PUSH_NULL : _NOP;
1283
- }
1284
else if (oparg < _PyUop_Replication[opcode]) {
1285
buffer[pc].opcode = opcode + oparg + 1;
1286
0 commit comments