This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 315f732 Fix docs/Coroutines.rst syntax highlighting on Linux new f57cf2f [llvm-cov] Add support for exporting coverage data to JSON
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: docs/CommandGuide/llvm-cov.rst | 29 ++ .../llvm-cov/Inputs/binary-formats.canonical.json | 38 ++ test/tools/llvm-cov/Inputs/highlightedRanges.json | 53 +++ .../tools/llvm-cov/Inputs/lineExecutionCounts.json | 38 ++ test/tools/llvm-cov/Inputs/regionMarkers.json | 37 ++ test/tools/llvm-cov/Inputs/showExpansions.json | 51 +++ test/tools/llvm-cov/Inputs/universal-binary.json | 36 ++ test/tools/llvm-cov/binary-formats.c | 4 + test/tools/llvm-cov/showExpansions.cpp | 1 + test/tools/llvm-cov/showHighlightedRanges.cpp | 1 + test/tools/llvm-cov/showLineExecutionCounts.cpp | 4 + test/tools/llvm-cov/showRegionMarkers.cpp | 2 + test/tools/llvm-cov/universal-binary.c | 2 + tools/llvm-cov/CMakeLists.txt | 1 + tools/llvm-cov/CodeCoverage.cpp | 36 +- tools/llvm-cov/CoverageExporterJson.cpp | 418 +++++++++++++++++++++ tools/llvm-cov/llvm-cov.cpp | 12 +- 17 files changed, 759 insertions(+), 4 deletions(-) create mode 100644 test/tools/llvm-cov/Inputs/binary-formats.canonical.json create mode 100644 test/tools/llvm-cov/Inputs/highlightedRanges.json create mode 100644 test/tools/llvm-cov/Inputs/lineExecutionCounts.json create mode 100644 test/tools/llvm-cov/Inputs/regionMarkers.json create mode 100644 test/tools/llvm-cov/Inputs/showExpansions.json create mode 100644 test/tools/llvm-cov/Inputs/universal-binary.json create mode 100644 tools/llvm-cov/CoverageExporterJson.cpp