This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch dmalcolm/analyzer in repository gcc.
from 384de8d8a45 invoke.texi: update -fdiagnostics-show-cwe for analyzer new ec9d6d98dd5 analyzer: add function-set.cc/h new b610c5973bd analyzer: introduce a set of known async-signal-unsafe functions new 60ea9b548b5 analyzer: add known stdio functions to sm-file.cc (PR analy [...] new 509c3a12d65 analyzer: add -Wanalyzer-use-of-closed-file
The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/Makefile.in | 1 + gcc/analyzer/analyzer-selftests.cc | 3 + gcc/analyzer/analyzer-selftests.h | 3 + gcc/analyzer/analyzer.opt | 4 + gcc/analyzer/function-set.cc | 191 ++++++++++++++++++++++++++ gcc/analyzer/{engine.h => function-set.h} | 30 ++++- gcc/analyzer/sm-file.cc | 192 ++++++++++++++++++++++++++- gcc/analyzer/sm-signal.cc | 57 +++++++- gcc/doc/invoke.texi | 13 ++ gcc/testsuite/gcc.dg/analyzer/file-1.c | 20 +++ gcc/testsuite/gcc.dg/analyzer/file-pr58237.c | 72 ++++++++++ gcc/testsuite/gcc.dg/analyzer/signal-5.c | 21 +++ 12 files changed, 594 insertions(+), 13 deletions(-) create mode 100644 gcc/analyzer/function-set.cc copy gcc/analyzer/{engine.h => function-set.h} (55%) create mode 100644 gcc/testsuite/gcc.dg/analyzer/file-pr58237.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/signal-5.c