llvm-cov: Split up reading of GCNO and GCDA files.
[oota-llvm.git] / include / llvm / Support / GCOV.h
index 7ba4acb1aef76972de1818996755d49a6942d40f..9649a1dad3b71a7905da8370a915339f52f4cf04 100644 (file)
@@ -210,7 +210,8 @@ class GCOVFunction {
 public:
   GCOVFunction() : Ident(0), LineNumber(0) {}
   ~GCOVFunction();
-  bool read(GCOVBuffer &Buffer, GCOV::GCOVFormat Format);
+  bool readGCNO(GCOVBuffer &Buffer, GCOV::GCOVFormat Format);
+  bool readGCDA(GCOVBuffer &Buffer, GCOV::GCOVFormat Format);
   StringRef getFilename() const { return Filename; }
   void dump() const;
   void collectLineCounts(FileInfo &FI);