aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/assemble.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2024-06-27 11:58:44 +0200
committerGitHub <noreply@github.com>2024-06-27 09:58:44 +0000
commit12af8ec864225248c3d2916cb142a5e7ee36cbe2 (patch)
treed29a5c87668a1cd1e67ceee0b9074ce7f2c74392 /Python/assemble.c
parent4999e0bda091826fcdf303dd439364e1d303a5ce (diff)
downloadcpython-12af8ec864225248c3d2916cb142a5e7ee36cbe2.tar.gz
cpython-12af8ec864225248c3d2916cb142a5e7ee36cbe2.zip
gh-121040: Use __attribute__((fallthrough)) (#121044)
Fix warnings when using -Wimplicit-fallthrough compiler flag. Annotate explicitly "fall through" switch cases with a new _Py_FALLTHROUGH macro which uses __attribute__((fallthrough)) if available. Replace "fall through" comments with _Py_FALLTHROUGH. Add _Py__has_attribute() macro. No longer define __has_attribute() macro if it's not defined. Move also _Py__has_builtin() at the top of pyport.h. Co-Authored-By: Nikita Sobolev <mail@sobolevn.me>
Diffstat (limited to 'Python/assemble.c')
-rw-r--r--Python/assemble.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/assemble.c b/Python/assemble.c
index 945c8ac39f5..f7b88b519f5 100644
--- a/Python/assemble.c
+++ b/Python/assemble.c
@@ -369,17 +369,17 @@ write_instr(_Py_CODEUNIT *codestr, instruction *instr, int ilen)
codestr->op.code = EXTENDED_ARG;
codestr->op.arg = (oparg >> 24) & 0xFF;
codestr++;
- /* fall through */
+ _Py_FALLTHROUGH;
case 3:
codestr->op.code = EXTENDED_ARG;
codestr->op.arg = (oparg >> 16) & 0xFF;
codestr++;
- /* fall through */
+ _Py_FALLTHROUGH;
case 2:
codestr->op.code = EXTENDED_ARG;
codestr->op.arg = (oparg >> 8) & 0xFF;
codestr++;
- /* fall through */
+ _Py_FALLTHROUGH;
case 1:
codestr->op.code = opcode;
codestr->op.arg = oparg & 0xFF;