summaryrefslogtreecommitdiffstats
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2023-11-01 21:24:52 (GMT)
committerGitHub <noreply@github.com>2023-11-01 21:24:52 (GMT)
commite4b37835eff1773504d5b6e7534e224d96abcedf (patch)
treeda532eb3a92583d970500253da111e3c183c64c8 /Python/bytecodes.c
parent834b7c18d74da3b30fdca66cc7da6b9e1db3ce6c (diff)
downloadcpython-e4b37835eff1773504d5b6e7534e224d96abcedf.zip
cpython-e4b37835eff1773504d5b6e7534e224d96abcedf.tar.gz
cpython-e4b37835eff1773504d5b6e7534e224d96abcedf.tar.bz2
GH-111485: Silence warnings in Python/executor_cases.c.h (#111619)
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index 98af114..9aca82a 100644
--- a/Python/bytecodes.c
+++ b/Python/bytecodes.c
@@ -1216,6 +1216,8 @@ dummy_func(
STAT_INC(UNPACK_SEQUENCE, deferred);
DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache);
#endif /* ENABLE_SPECIALIZATION */
+ (void)seq;
+ (void)counter;
}
op(_UNPACK_SEQUENCE, (seq -- unused[oparg])) {