mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
GH-118910: Less boilerplate in the tier 2 optimizer (#118913)
This commit is contained in:
parent
941eea0a27
commit
f5c6b9977a
7 changed files with 275 additions and 473 deletions
|
@ -909,7 +909,6 @@ class TestGeneratedAbstractCases(unittest.TestCase):
|
|||
case OP2: {
|
||||
_Py_UopsSymbol *out;
|
||||
out = sym_new_not_null(ctx);
|
||||
if (out == NULL) goto out_of_space;
|
||||
stack_pointer[-1] = out;
|
||||
break;
|
||||
}
|
||||
|
@ -934,7 +933,6 @@ class TestGeneratedAbstractCases(unittest.TestCase):
|
|||
case OP: {
|
||||
_Py_UopsSymbol *out;
|
||||
out = sym_new_not_null(ctx);
|
||||
if (out == NULL) goto out_of_space;
|
||||
stack_pointer[-1] = out;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue