Skip to content

Commit 0515341

Browse files
committed
Remove 'split' annotation
1 parent 0f49a42 commit 0515341

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Python/bytecodes.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2237,7 +2237,7 @@ dummy_func(
22372237
DEOPT_IF(!FT_ATOMIC_LOAD_UINT8(_PyObject_InlineValues(owner_o)->valid));
22382238
}
22392239

2240-
split op(_LOAD_ATTR_INSTANCE_VALUE, (offset/1, owner -- attr)) {
2240+
op(_LOAD_ATTR_INSTANCE_VALUE, (offset/1, owner -- attr)) {
22412241
assert((oparg & 1) == 0);
22422242
PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
22432243
PyObject **value_ptr = (PyObject**)(((char *)owner_o) + offset);
@@ -2354,7 +2354,7 @@ dummy_func(
23542354
_LOAD_ATTR_WITH_HINT +
23552355
unused/5;
23562356

2357-
split op(_LOAD_ATTR_SLOT, (index/1, owner -- attr)) {
2357+
op(_LOAD_ATTR_SLOT, (index/1, owner -- attr)) {
23582358
assert((oparg & 1) == 0);
23592359
PyObject *owner_o = PyStackRef_AsPyObjectBorrow(owner);
23602360

@@ -2385,7 +2385,7 @@ dummy_func(
23852385
EXIT_IF(FT_ATOMIC_LOAD_UINT_RELAXED(((PyTypeObject *)owner_o)->tp_version_tag) != type_version);
23862386
}
23872387

2388-
split op(_LOAD_ATTR_CLASS, (descr/4, owner -- attr)) {
2388+
op(_LOAD_ATTR_CLASS, (descr/4, owner -- attr)) {
23892389
assert((oparg & 1) == 0);
23902390
STAT_INC(LOAD_ATTR, hit);
23912391
assert(descr != NULL);
@@ -3365,7 +3365,7 @@ dummy_func(
33653365
DEOPT_IF(FT_ATOMIC_LOAD_UINT32_RELAXED(keys->dk_version) != keys_version);
33663366
}
33673367

3368-
split op(_LOAD_METHOD_WITH_VALUES, (descr/4, owner -- attr, self)) {
3368+
op(_LOAD_METHOD_WITH_VALUES, (descr/4, owner -- attr, self)) {
33693369
assert(oparg & 1);
33703370
/* Cached method object */
33713371
STAT_INC(LOAD_ATTR, hit);

Tools/cases_generator/lexer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ def choice(*opts: str) -> str:
222222
"register",
223223
"replaced",
224224
"pure",
225-
"split",
226225
"replicate",
227226
"tier1",
228227
"tier2",

0 commit comments

Comments
 (0)