GH-118910: Less boilerplate in the tier 2 optimizer (#118913)

This commit is contained in:
Mark Shannon 2024-05-10 17:43:23 +01:00 committed by GitHub
parent 941eea0a27
commit f5c6b9977a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 275 additions and 473 deletions

View file

@ -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;
}