This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0b2fb3a9d0 Make DiagnosticsEngine() take DiagOpts as DiagnosticsEngine. new b2aa74af5d [analyzer] support a mode to only show relevant lines in HTM [...]
The 1 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: .../Core/BugReporter/PathDiagnostic.h | 17 +++- lib/Rewrite/HTMLRewrite.cpp | 11 ++- lib/StaticAnalyzer/Core/BugReporter.cpp | 66 ++++++++++++++- lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp | 99 ++++++++++++++++++++++ lib/StaticAnalyzer/Core/PathDiagnostic.cpp | 26 +++--- .../html_diagnostics/relevant_lines/header.h | 12 +++ .../relevant_lines/macros_same_file.c | 15 ++++ .../html_diagnostics/relevant_lines/multifile.c | 14 +++ .../relevant_lines/multiline_func_def.c | 16 ++++ .../html_diagnostics/relevant_lines/objcmethods.m | 19 +++++ .../relevant_lines/simple_conditional.c | 13 +++ .../relevant_lines/unused_header.c | 19 +++++ 12 files changed, 305 insertions(+), 22 deletions(-) create mode 100644 test/Analysis/html_diagnostics/relevant_lines/header.h create mode 100644 test/Analysis/html_diagnostics/relevant_lines/macros_same_file.c create mode 100644 test/Analysis/html_diagnostics/relevant_lines/multifile.c create mode 100644 test/Analysis/html_diagnostics/relevant_lines/multiline_func_def.c create mode 100644 test/Analysis/html_diagnostics/relevant_lines/objcmethods.m create mode 100644 test/Analysis/html_diagnostics/relevant_lines/simple_conditional.c create mode 100644 test/Analysis/html_diagnostics/relevant_lines/unused_header.c