This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 91c8aa8a6b [CFG] NFC: Speculative attempt to fix MSVC internal compiler [...] new 599d6eacd9 [analyzer] Consider switch- and goto- labels when constructi [...] new 4f283ec900 [analyzer] mark returns of functions where the region passed [...] new 712969ac08 [analyzer] Relax the assert used when traversing the node graph.
The 3 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: lib/StaticAnalyzer/Core/BugReporter.cpp | 30 ++- lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 272 +++++++++++++++++++++ lib/StaticAnalyzer/Core/ExprEngineC.cpp | 6 +- .../diagnostics/no-store-func-path-notes.c | 226 +++++++++++++++++ .../diagnostics/no-store-func-path-notes.cpp | 147 +++++++++++ .../diagnostics/no-store-func-path-notes.m | 46 ++++ test/Analysis/diagnostics/undef-value-param.c | 36 ++- test/Analysis/diagnostics/undef-value-param.m | 50 +++- test/Analysis/exploration_order/noexprcrash.c | 17 ++ .../html_diagnostics/relevant_lines/goto.c | 13 + .../html_diagnostics/relevant_lines/switch.c | 20 ++ .../relevant_lines/switch_default.c | 20 ++ 12 files changed, 871 insertions(+), 12 deletions(-) create mode 100644 test/Analysis/diagnostics/no-store-func-path-notes.c create mode 100644 test/Analysis/diagnostics/no-store-func-path-notes.cpp create mode 100644 test/Analysis/diagnostics/no-store-func-path-notes.m create mode 100644 test/Analysis/exploration_order/noexprcrash.c create mode 100644 test/Analysis/html_diagnostics/relevant_lines/goto.c create mode 100644 test/Analysis/html_diagnostics/relevant_lines/switch.c create mode 100644 test/Analysis/html_diagnostics/relevant_lines/switch_default.c