File tree Expand file tree Collapse file tree 3 files changed +4574
-4570
lines changed Expand file tree Collapse file tree 3 files changed +4574
-4570
lines changed Original file line number Diff line number Diff line change @@ -405,19 +405,6 @@ def test_macro_instruction(self):
405405 family(OP, INLINE_CACHE_ENTRIES_OP) = { OP3 };
406406 """
407407 output = """
408- TARGET(OP1) {
409- _Py_CODEUNIT *this_instr = frame->instr_ptr = next_instr;
410- next_instr += 2;
411- INSTRUCTION_STATS(OP1);
412- PyObject *right;
413- PyObject *left;
414- right = stack_pointer[-1];
415- left = stack_pointer[-2];
416- uint16_t counter = read_u16(&this_instr[1].cache);
417- op1(left, right);
418- DISPATCH();
419- }
420-
421408 TARGET(OP) {
422409 frame->instr_ptr = next_instr;
423410 next_instr += 6;
@@ -447,6 +434,19 @@ def test_macro_instruction(self):
447434 DISPATCH();
448435 }
449436
437+ TARGET(OP1) {
438+ _Py_CODEUNIT *this_instr = frame->instr_ptr = next_instr;
439+ next_instr += 2;
440+ INSTRUCTION_STATS(OP1);
441+ PyObject *right;
442+ PyObject *left;
443+ right = stack_pointer[-1];
444+ left = stack_pointer[-2];
445+ uint16_t counter = read_u16(&this_instr[1].cache);
446+ op1(left, right);
447+ DISPATCH();
448+ }
449+
450450 TARGET(OP3) {
451451 frame->instr_ptr = next_instr;
452452 next_instr += 6;
You can’t perform that action at this time.
0 commit comments