summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-cov/CoverageSummary.h
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-09-20 15:31:56 +0000
committerJustin Bogner <mail@justinbogner.com>2014-09-20 15:31:56 +0000
commit953e2407edb956eb846a79fc0dce08d032ea0d66 (patch)
tree617f3d06bf359ec67e4b312f2755e0453ce6cf9b /llvm/tools/llvm-cov/CoverageSummary.h
parentf584649ae397396016b1fbfc6fe8d8ea29e2ebf5 (diff)
downloadbcm5719-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.h2
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; }
OpenPOWER on IntegriCloud