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 f362866 commit d54a6f2Copy full SHA for d54a6f2
Python/optimizer_bytecodes.c
@@ -235,17 +235,17 @@ dummy_func(void) {
235
}
236
237
op(_BINARY_OP_ADD_INT, (left, right -- res)) {
238
- REPLACE_OPCODE_IF_EVALUATES_PURE(left, right);
+ REPLACE_OPCODE_IF_EVALUATES_PURE(left, right);
239
res = sym_new_compact_int(ctx);
240
241
242
op(_BINARY_OP_SUBTRACT_INT, (left, right -- res)) {
243
244
245
246
247
op(_BINARY_OP_MULTIPLY_INT, (left, right -- res)) {
248
249
250
251
0 commit comments