Skip to content

Commit 3ebcc20

Browse files
Update comment
1 parent b74e160 commit 3ebcc20

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Python/optimizer_bytecodes.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ dummy_func(void) {
296296
else {
297297
res = sym_new_type(ctx, &PyFloat_Type);
298298
}
299-
// TODO (gh-134584): Move this to the optimizer generator.
299+
// TODO (gh-134584): Refactor this to use another uop
300300
if (PyJitRef_IsBorrowed(left) && PyJitRef_IsBorrowed(right)) {
301301
REPLACE_OP(this_instr, op_without_decref_inputs[opcode], oparg, 0);
302302
}
@@ -320,7 +320,7 @@ dummy_func(void) {
320320
else {
321321
res = sym_new_type(ctx, &PyFloat_Type);
322322
}
323-
// TODO (gh-134584): Move this to the optimizer generator.
323+
// TODO (gh-134584): Refactor this to use another uop
324324
if (PyJitRef_IsBorrowed(left) && PyJitRef_IsBorrowed(right)) {
325325
REPLACE_OP(this_instr, op_without_decref_inputs[opcode], oparg, 0);
326326
}
@@ -344,7 +344,7 @@ dummy_func(void) {
344344
else {
345345
res = sym_new_type(ctx, &PyFloat_Type);
346346
}
347-
// TODO (gh-134584): Move this to the optimizer generator.
347+
// TODO (gh-134584): Refactor this to use another uop
348348
if (PyJitRef_IsBorrowed(left) && PyJitRef_IsBorrowed(right)) {
349349
REPLACE_OP(this_instr, op_without_decref_inputs[opcode], oparg, 0);
350350
}

0 commit comments

Comments
 (0)