summaryrefslogtreecommitdiff
path: root/Python/opcode_targets.h
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2021-10-05 11:01:11 +0100
committerGitHub <noreply@github.com>2021-10-05 11:01:11 +0100
commitbd627eb7ed08a891dd1356756feb1ce2600358e4 (patch)
treefa2bb6db2fbdca1d08cd685d537c2db5d95e6192 /Python/opcode_targets.h
parentef6196028f966f22d82930b66e1371e75c5df2f7 (diff)
downloadcpython-git-bd627eb7ed08a891dd1356756feb1ce2600358e4.tar.gz
bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch. (GH-28723)
Diffstat (limited to 'Python/opcode_targets.h')
-rw-r--r--Python/opcode_targets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/opcode_targets.h b/Python/opcode_targets.h
index f3bfae545b..30df683825 100644
--- a/Python/opcode_targets.h
+++ b/Python/opcode_targets.h
@@ -254,5 +254,5 @@ static void *opcode_targets[256] = {
&&_unknown_opcode,
&&_unknown_opcode,
&&_unknown_opcode,
- &&_unknown_opcode
+ &&TARGET_DO_TRACING
};