summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2022-02-15 09:35:16 (GMT)
committerGitHub <noreply@github.com>2022-02-15 09:35:16 (GMT)
commit3be1a443ca8e7d4ba85f95b78df5c4122cae9ede (patch)
tree78b67b7f1b7a583bda33bf7f0788a55569f19287 /Misc
parent12360aa159c42c7798fd14225d271e6fd84db7eb (diff)
downloadcpython-3be1a443ca8e7d4ba85f95b78df5c4122cae9ede.zip
cpython-3be1a443ca8e7d4ba85f95b78df5c4122cae9ede.tar.gz
cpython-3be1a443ca8e7d4ba85f95b78df5c4122cae9ede.tar.bz2
bpo-46724: Use `JUMP_ABSOLUTE` for all backward jumps. (GH-31326)
* Make sure all backward jumps use JUMP_ABSOLUTE. * Add news. * Fix up news item. * Make test use consistent style.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-02-14-14-44-06.bpo-46724.jym_K6.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-02-14-14-44-06.bpo-46724.jym_K6.rst b/Misc/NEWS.d/next/Core and Builtins/2022-02-14-14-44-06.bpo-46724.jym_K6.rst
new file mode 100644
index 0000000..7324182
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-02-14-14-44-06.bpo-46724.jym_K6.rst
@@ -0,0 +1,2 @@
+Make sure that all backwards jumps use the ``JUMP_ABSOLUTE`` instruction, rather
+than ``JUMP_FORWARD`` with an argument of ``(2**32)+offset``.