summaryrefslogtreecommitdiff
path: root/tools/llvm-cov/GCOVReader.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-09-29 16:52:53 +0000
committerDevang Patel <dpatel@apple.com>2011-09-29 16:52:53 +0000
commita5ef699f41499764afdd76c6495f73c1f1e4f85e (patch)
tree1772a04f04f1ffa35f4aca1c8a6e4bc46e2119e1 /tools/llvm-cov/GCOVReader.h
parent8d6c0fb97910823db8307cc85059440a9dbadba9 (diff)
downloadllvm-a5ef699f41499764afdd76c6495f73c1f1e4f85e.tar.gz
llvm-a5ef699f41499764afdd76c6495f73c1f1e4f85e.tar.bz2
llvm-a5ef699f41499764afdd76c6495f73c1f1e4f85e.tar.xz
Clarify comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-cov/GCOVReader.h')
-rw-r--r--tools/llvm-cov/GCOVReader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvm-cov/GCOVReader.h b/tools/llvm-cov/GCOVReader.h
index 67199db142..98a556c78d 100644
--- a/tools/llvm-cov/GCOVReader.h
+++ b/tools/llvm-cov/GCOVReader.h
@@ -35,7 +35,7 @@ enum GCOVFormat {
GCDA_404
};
-/// GCOVBuffer - A wrapper around MemoryBuffer to provid GCOV specific
+/// GCOVBuffer - A wrapper around MemoryBuffer to provide GCOV specific
/// read operations.
class GCOVBuffer {
public:
@@ -152,7 +152,8 @@ private:
uint64_t Cursor;
};
-/// GCOVFile - Collects file information.
+/// GCOVFile - Collects coverage information for one pair of coverage file
+/// (.gcno and .gcda).
class GCOVFile {
public:
GCOVFile() {}
@@ -218,7 +219,6 @@ private:
StringMap<LineCounts> LineInfo;
};
-
}
#endif