diff options
author | Dong-hee Na <donghee.na@python.org> | 2023-06-07 23:39:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 23:39:56 (GMT) |
commit | aa5b762bd3a3e837678cf7f9e1434c0f68208a0e (patch) | |
tree | ffd19de4a3f175d02f812b12166b0568525e0c27 /Misc | |
parent | ffeaec7e60c88d585deacb10264ba7a96e5e52df (diff) | |
download | cpython-aa5b762bd3a3e837678cf7f9e1434c0f68208a0e.zip cpython-aa5b762bd3a3e837678cf7f9e1434c0f68208a0e.tar.gz cpython-aa5b762bd3a3e837678cf7f9e1434c0f68208a0e.tar.bz2 |
gh-104635: Eliminate redundant STORE_FAST instructions in the compiler (gh-105320)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-06-05-23-38-43.gh-issue-104635.VYZhVh.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-06-05-23-38-43.gh-issue-104635.VYZhVh.rst b/Misc/NEWS.d/next/Core and Builtins/2023-06-05-23-38-43.gh-issue-104635.VYZhVh.rst new file mode 100644 index 0000000..f20ddb5 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-06-05-23-38-43.gh-issue-104635.VYZhVh.rst @@ -0,0 +1,2 @@ +Eliminate redundant :opcode:`STORE_FAST` instructions in the compiler. Patch +by Dong-hee Na and Carl Meyer. |