[llvm] r197439 - llvm-cov: Marked secondary print functions private.
Yuchen Wu
yuchenericwu at hotmail.com
Mon Dec 16 15:24:30 PST 2013
Author: ywu
Date: Mon Dec 16 17:24:30 2013
New Revision: 197439
URL: http://llvm.org/viewvc/llvm-project?rev=197439&view=rev
Log:
llvm-cov: Marked secondary print functions private.
Modified:
llvm/trunk/include/llvm/Support/GCOV.h
Modified: llvm/trunk/include/llvm/Support/GCOV.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/GCOV.h?rev=197439&r1=197438&r2=197439&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/GCOV.h (original)
+++ llvm/trunk/include/llvm/Support/GCOV.h Mon Dec 16 17:24:30 2013
@@ -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<LineData> LineInfo;
uint32_t RunCount;
More information about the llvm-commits
mailing list