mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
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:
parent
479ac5ce8a
commit
86e5e063ab
3 changed files with 104 additions and 104 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue