summaryrefslogtreecommitdiff
path: root/lib/IR/GCOV.cpp
diff options
context:
space:
mode:
authorYuchen Wu <yuchenericwu@hotmail.com>2013-12-16 20:03:11 +0000
committerYuchen Wu <yuchenericwu@hotmail.com>2013-12-16 20:03:11 +0000
commit028208d3340f263824a5a5580effdf97feb4c0fd (patch)
tree7c2aec4c16458451d5ab7e9de8ab1f6f78847c78 /lib/IR/GCOV.cpp
parent1d86f6730f70de4234b1c09841eebf64c692625f (diff)
downloadllvm-028208d3340f263824a5a5580effdf97feb4c0fd.tar.gz
llvm-028208d3340f263824a5a5580effdf97feb4c0fd.tar.bz2
llvm-028208d3340f263824a5a5580effdf97feb4c0fd.tar.xz
llvm-cov: Removed extra semicolon from ;;.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197418 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR/GCOV.cpp')
-rw-r--r--lib/IR/GCOV.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IR/GCOV.cpp b/lib/IR/GCOV.cpp
index 73642c98f4..78ff262516 100644
--- a/lib/IR/GCOV.cpp
+++ b/lib/IR/GCOV.cpp
@@ -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()) {