From 953e2407edb956eb846a79fc0dce08d032ea0d66 Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Sat, 20 Sep 2014 15:31:56 +0000 Subject: 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 --- llvm/tools/llvm-cov/CoverageSummary.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/tools/llvm-cov/CoverageSummary.h') 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 Functions); + void createSummaries(ArrayRef Functions); ArrayRef getFileSummaries() { return FileSummaries; } -- cgit v1.2.3