diff options
author | Justin Bogner <mail@justinbogner.com> | 2014-09-20 15:31:56 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2014-09-20 15:31:56 +0000 |
commit | 953e2407edb956eb846a79fc0dce08d032ea0d66 (patch) | |
tree | 617f3d06bf359ec67e4b312f2755e0453ce6cf9b /llvm/tools/llvm-cov/CoverageSummary.h | |
parent | f584649ae397396016b1fbfc6fe8d8ea29e2ebf5 (diff) | |
download | bcm5719-llvm-953e2407edb956eb846a79fc0dce08d032ea0d66.tar.gz bcm5719-llvm-953e2407edb956eb846a79fc0dce08d032ea0d66.zip |
llvm-cov: Disentangle the coverage data logic from the display (NFC)
This splits the logic for actually looking up coverage information
from the logic that displays it. These were tangled rather thoroughly
so this change is a bit large, but it mostly consists of moving things
around. The coverage lookup logic itself now lives in the library,
rather than being spread between the library and the tool.
llvm-svn: 218184
Diffstat (limited to 'llvm/tools/llvm-cov/CoverageSummary.h')
-rw-r--r-- | llvm/tools/llvm-cov/CoverageSummary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-cov/CoverageSummary.h b/llvm/tools/llvm-cov/CoverageSummary.h index 5d6a55559cd..b93103c8cf2 100644 --- a/llvm/tools/llvm-cov/CoverageSummary.h +++ b/llvm/tools/llvm-cov/CoverageSummary.h @@ -30,7 +30,7 @@ class CoverageSummary { unsigned getFileID(StringRef Filename); public: - void createSummaries(ArrayRef<coverage::FunctionCoverageMapping> Functions); + void createSummaries(ArrayRef<coverage::FunctionRecord> Functions); ArrayRef<FileCoverageSummary> getFileSummaries() { return FileSummaries; } |