From b8b9712cfe8fdb375759fd55699d00b246011b03 Mon Sep 17 00:00:00 2001 From: Yuchen Wu Date: Mon, 16 Dec 2013 23:24:30 +0000 Subject: [PATCH] llvm-cov: Marked secondary print functions private. llvm-svn: 197439 --- llvm/include/llvm/Support/GCOV.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/GCOV.h b/llvm/include/llvm/Support/GCOV.h index de93e1dee2d4..9321021fa026 100644 --- a/llvm/include/llvm/Support/GCOV.h +++ b/llvm/include/llvm/Support/GCOV.h @@ -363,6 +363,7 @@ public: void setRunCount(uint32_t Runs) { RunCount = Runs; } void setProgramCount(uint32_t Programs) { ProgramCount = Programs; } void print(StringRef GCNOFile, StringRef GCDAFile) const; +private: void printFunctionSummary(raw_fd_ostream &OS, const FunctionVector &Funcs) const; void printBlockInfo(raw_fd_ostream &OS, const GCOVBlock &Block, @@ -371,7 +372,7 @@ public: uint32_t &EdgeNo) const; void printUncondBranchInfo(raw_fd_ostream &OS, uint32_t &EdgeNo, uint64_t Count) const; -private: + const GCOVOptions &Options; StringMap LineInfo; uint32_t RunCount;