mirror of
https://github.com/python/cpython.git
synced 2026-04-14 07:41:00 +00:00
gh-134584: Eliminate redundant refcounting from _LOAD_ATTR_WITH_HINT (GH-143062)
Eliminate redundant refcounting from _LOAD_ATTR_WITH_HINT
This commit is contained in:
parent
9e51301234
commit
5b5ee3c4bf
9 changed files with 54 additions and 21 deletions
|
|
@ -634,9 +634,10 @@ dummy_func(void) {
|
|||
}
|
||||
}
|
||||
|
||||
op(_LOAD_ATTR_WITH_HINT, (hint/1, owner -- attr)) {
|
||||
op(_LOAD_ATTR_WITH_HINT, (hint/1, owner -- attr, o)) {
|
||||
attr = sym_new_not_null(ctx);
|
||||
(void)hint;
|
||||
o = owner;
|
||||
}
|
||||
|
||||
op(_LOAD_ATTR_SLOT, (index/1, owner -- attr)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue