summaryrefslogtreecommitdiff
path: root/Lib/opcode.py
diff options
context:
space:
mode:
authorDennis Sweeney <36520290+sweeneyde@users.noreply.github.com>2022-04-28 00:36:34 -0400
committerGitHub <noreply@github.com>2022-04-27 22:36:34 -0600
commit37c6db60f9ac62b8a80bf04a8146274756ee0da0 (patch)
tree29cc3ac65b9ee6d2246f4efbdf23767749fbd9bd /Lib/opcode.py
parent407c3afe1986f4c43cb0e68e28b90da30eebd738 (diff)
downloadcpython-git-37c6db60f9ac62b8a80bf04a8146274756ee0da0.tar.gz
gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r--Lib/opcode.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py
index 9ee06831c3..6c3862707c 100644
--- a/Lib/opcode.py
+++ b/Lib/opcode.py
@@ -264,6 +264,9 @@ _specializations = {
"COMPARE_OP_INT_JUMP",
"COMPARE_OP_STR_JUMP",
],
+ "EXTENDED_ARG": [
+ "EXTENDED_ARG_QUICK",
+ ],
"JUMP_BACKWARD": [
"JUMP_BACKWARD_QUICK",
],