mirror of https://github.com/python/cpython.git
GH-111485: Silence warnings in Python/executor_cases.c.h (#111619)
This commit is contained in:
parent
834b7c18d7
commit
e4b37835ef
|
@ -1216,6 +1216,8 @@ dummy_func(
|
||||||
STAT_INC(UNPACK_SEQUENCE, deferred);
|
STAT_INC(UNPACK_SEQUENCE, deferred);
|
||||||
DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache);
|
DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache);
|
||||||
#endif /* ENABLE_SPECIALIZATION */
|
#endif /* ENABLE_SPECIALIZATION */
|
||||||
|
(void)seq;
|
||||||
|
(void)counter;
|
||||||
}
|
}
|
||||||
|
|
||||||
op(_UNPACK_SEQUENCE, (seq -- unused[oparg])) {
|
op(_UNPACK_SEQUENCE, (seq -- unused[oparg])) {
|
||||||
|
|
|
@ -884,6 +884,8 @@
|
||||||
STAT_INC(UNPACK_SEQUENCE, deferred);
|
STAT_INC(UNPACK_SEQUENCE, deferred);
|
||||||
DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache);
|
DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache);
|
||||||
#endif /* ENABLE_SPECIALIZATION */
|
#endif /* ENABLE_SPECIALIZATION */
|
||||||
|
(void)seq;
|
||||||
|
(void)counter;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1743,6 +1743,8 @@
|
||||||
STAT_INC(UNPACK_SEQUENCE, deferred);
|
STAT_INC(UNPACK_SEQUENCE, deferred);
|
||||||
DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache);
|
DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache);
|
||||||
#endif /* ENABLE_SPECIALIZATION */
|
#endif /* ENABLE_SPECIALIZATION */
|
||||||
|
(void)seq;
|
||||||
|
(void)counter;
|
||||||
}
|
}
|
||||||
// _UNPACK_SEQUENCE
|
// _UNPACK_SEQUENCE
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue