Skip to content

Commit

Permalink
llvm-cov: Removed extra semicolon from ;;.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197418 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
yuchenericwu committed Dec 16, 2013
1 parent 1d86f67 commit 028208d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/IR/GCOV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down

0 comments on commit 028208d

Please sign in to comment.