Issue 35878: ast.c: end_col_offset may be used uninitialized in this function (original) (raw)
https://buildbot.python.org/all/#builders/103/builds/2023
There are many "end_col_offset may be used uninitialized in this function" warnings. Example:
In file included from Python/ast.c:7:0: Python/ast.c: In function ‘ast_for_funcdef_impl’: ./Include/Python-ast.h:484:66: warning: ‘end_col_offset’ may be used uninitialized in this function [-Wmaybe-uninitialized] #define FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) ^~~~~~~~~~~~~~~ Python/ast.c:1738:21: note: ‘end_col_offset’ was declared here int end_lineno, end_col_offset; ^~~~~~~~~~~~~~