mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
llvm-cov: Split up reading of GCNO and GCDA files.
There are now two functions: readGCNO() and readGCDA(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196173 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user