mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
Remove unnecessary and unused data member.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140786 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -29,7 +29,7 @@ GCOVFile::~GCOVFile() {
|
|||||||
|
|
||||||
/// read - Read GCOV buffer.
|
/// read - Read GCOV buffer.
|
||||||
bool GCOVFile::read(GCOVBuffer &Buffer) {
|
bool GCOVFile::read(GCOVBuffer &Buffer) {
|
||||||
Format = Buffer.readGCOVFormat();
|
GCOVFormat Format = Buffer.readGCOVFormat();
|
||||||
if (Format == InvalidGCOV)
|
if (Format == InvalidGCOV)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@@ -155,13 +155,12 @@ private:
|
|||||||
/// GCOVFile - Collects file information.
|
/// GCOVFile - Collects file information.
|
||||||
class GCOVFile {
|
class GCOVFile {
|
||||||
public:
|
public:
|
||||||
GCOVFile() : Format(InvalidGCOV) {}
|
GCOVFile() {}
|
||||||
~GCOVFile();
|
~GCOVFile();
|
||||||
bool read(GCOVBuffer &Buffer);
|
bool read(GCOVBuffer &Buffer);
|
||||||
void dump();
|
void dump();
|
||||||
void collectLineCounts(FileInfo &FI);
|
void collectLineCounts(FileInfo &FI);
|
||||||
private:
|
private:
|
||||||
enum GCOVFormat Format;
|
|
||||||
SmallVector<GCOVFunction *, 16> Functions;
|
SmallVector<GCOVFunction *, 16> Functions;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user