summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2024-06-17 10:10:06 (GMT)
committerGitHub <noreply@github.com>2024-06-17 10:10:06 (GMT)
commit21866c8ed296524f0ca175c0f55b43744c2b30df (patch)
treee3999b48aa9a4d66d4ac4b1e90518d8659b5d3aa /Misc/NEWS.d
parentc2d5df5787b1f7fbd2583811c66c34a417593cad (diff)
downloadcpython-21866c8ed296524f0ca175c0f55b43744c2b30df.zip
cpython-21866c8ed296524f0ca175c0f55b43744c2b30df.tar.gz
cpython-21866c8ed296524f0ca175c0f55b43744c2b30df.tar.bz2
gh-120367: fix removal of redundant NOPs and jumps after reordering hot-cold blocks (#120425)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2024-06-12-18-50-29.gh-issue-120367.LmXx2y.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-06-12-18-50-29.gh-issue-120367.LmXx2y.rst b/Misc/NEWS.d/next/Core and Builtins/2024-06-12-18-50-29.gh-issue-120367.LmXx2y.rst
new file mode 100644
index 0000000..2d7212a
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2024-06-12-18-50-29.gh-issue-120367.LmXx2y.rst
@@ -0,0 +1,2 @@
+Fix crash in compiler on code with redundant NOPs and JUMPs which show up
+after exception handlers are moved to the end of the code.