File tree 3 files changed +4574
-4570
lines changed 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):
405
405
family(OP, INLINE_CACHE_ENTRIES_OP) = { OP3 };
406
406
"""
407
407
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
-
421
408
TARGET(OP) {
422
409
frame->instr_ptr = next_instr;
423
410
next_instr += 6;
@@ -447,6 +434,19 @@ def test_macro_instruction(self):
447
434
DISPATCH();
448
435
}
449
436
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
+
450
450
TARGET(OP3) {
451
451
frame->instr_ptr = next_instr;
452
452
next_instr += 6;
You can’t perform that action at this time.
0 commit comments