gh-115816: Generate calls to sym_new_const() etc. without _Py_uop prefix (#116077)

This was left behind by GH-115987. Basically a lot of diffs like this:
```
-            res = _Py_uop_sym_new_unknown(ctx);
+            res = sym_new_unknown(ctx);
```
This commit is contained in:
Guido van Rossum 2024-02-28 16:05:53 -08:00 committed by GitHub
parent 479ac5ce8a
commit 86e5e063ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 104 additions and 104 deletions

View file

@ -900,7 +900,7 @@ class TestGeneratedAbstractCases(unittest.TestCase):
case OP2: {
_Py_UopsSymbol *out;
out = _Py_uop_sym_new_unknown(ctx);
out = sym_new_unknown(ctx);
if (out == NULL) goto out_of_space;
stack_pointer[-1] = out;
break;
@ -925,7 +925,7 @@ class TestGeneratedAbstractCases(unittest.TestCase):
output = """
case OP: {
_Py_UopsSymbol *out;
out = _Py_uop_sym_new_unknown(ctx);
out = sym_new_unknown(ctx);
if (out == NULL) goto out_of_space;
stack_pointer[-1] = out;
break;