From: Yuchen Wu Date: Mon, 16 Dec 2013 23:24:30 +0000 (+0000) Subject: llvm-cov: Marked secondary print functions private. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=da84349207baf7e668bf2425b4c02522e26a6668;p=oota-llvm.git llvm-cov: Marked secondary print functions private. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197439 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/GCOV.h b/include/llvm/Support/GCOV.h index de93e1dee2d..9321021fa02 100644 --- a/include/llvm/Support/GCOV.h +++ b/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;