This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 181ea762ad UsersManual: beef up the clang-cl text a little new e9c5141c8f UsersManual: improve the clang-cl text some more new c476211d8b Resubmit [analyzer] Support for naive cross translation unit [...]
The 2 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: docs/UsersManual.rst | 17 ++ .../clang/StaticAnalyzer/Core/AnalyzerOptions.h | 21 ++ .../StaticAnalyzer/Core/PathSensitive/ExprEngine.h | 18 +- .../StaticAnalyzer/Core/PathSensitive/SubEngine.h | 7 + lib/StaticAnalyzer/Core/AnalyzerOptions.cpp | 23 ++ lib/StaticAnalyzer/Core/CMakeLists.txt | 1 + lib/StaticAnalyzer/Core/CallEvent.cpp | 23 +- lib/StaticAnalyzer/Core/ExprEngine.cpp | 7 +- lib/StaticAnalyzer/Core/PathDiagnostic.cpp | 19 +- lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp | 15 +- lib/StaticAnalyzer/Frontend/CMakeLists.txt | 1 + test/Analysis/Inputs/ctu-chain.cpp | 20 ++ test/Analysis/Inputs/ctu-other.cpp | 67 +++++ test/Analysis/Inputs/externalFnMap.txt | 13 + test/Analysis/analyzer-config.cpp | 3 +- test/Analysis/ctu-main.cpp | 58 +++++ tools/scan-build-py/README.md | 26 ++ tools/scan-build-py/libscanbuild/__init__.py | 3 + tools/scan-build-py/libscanbuild/analyze.py | 279 +++++++++++++++++++-- tools/scan-build-py/libscanbuild/arguments.py | 76 +++++- tools/scan-build-py/libscanbuild/clang.py | 27 +- tools/scan-build-py/libscanbuild/report.py | 22 +- tools/scan-build-py/tests/unit/test_analyze.py | 84 ++++++- tools/scan-build-py/tests/unit/test_clang.py | 12 + 24 files changed, 791 insertions(+), 51 deletions(-) create mode 100644 test/Analysis/Inputs/ctu-chain.cpp create mode 100644 test/Analysis/Inputs/ctu-other.cpp create mode 100644 test/Analysis/Inputs/externalFnMap.txt create mode 100644 test/Analysis/ctu-main.cpp