llvm-cov: Removed extra semicolon from ;;.

llvm-svn: 197418
This commit is contained in:
Yuchen Wu 2013-12-16 20:03:11 +00:00
parent b1612c18ab
commit 8742a28560

View File

@ -81,7 +81,7 @@ bool GCOVFile::readGCDA(GCOVBuffer &Buffer) {
if (!Buffer.readInt(Length)) return false;
if (!Buffer.readInt(Dummy)) return false; // checksum
if (!Buffer.readInt(Dummy)) return false; // num
if (!Buffer.readInt(RunCount)) return false;;
if (!Buffer.readInt(RunCount)) return false;
Buffer.advanceCursor(Length-3);
}
while (Buffer.readProgramTag()) {