summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-04-19 23:42:50 +0000
committerJustin Bogner <mail@justinbogner.com>2014-04-19 23:42:50 +0000
commitbe76c2adceecdf292efb7bf6333afdcf032f0ac6 (patch)
tree201e7ab72b1f0fa32480e3db84bb899b3a170b86 /lib
parentf44eda4764476b9043a13df247a558998ea2ed10 (diff)
downloadllvm-be76c2adceecdf292efb7bf6333afdcf032f0ac6.tar.gz
llvm-be76c2adceecdf292efb7bf6333afdcf032f0ac6.tar.bz2
llvm-be76c2adceecdf292efb7bf6333afdcf032f0ac6.tar.xz
ProfileData: Remove an extra semicolon
Spotted by Nick Lewycky in review, thanks! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206708 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/ProfileData/InstrProfWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ProfileData/InstrProfWriter.cpp b/lib/ProfileData/InstrProfWriter.cpp
index 19b6890b36..83d03d6a28 100644
--- a/lib/ProfileData/InstrProfWriter.cpp
+++ b/lib/ProfileData/InstrProfWriter.cpp
@@ -75,7 +75,7 @@ error_code InstrProfWriter::addFunctionCounts(StringRef FunctionName,
auto &Data = FunctionData[FunctionName];
Data.Hash = FunctionHash;
Data.Counts = Counters;
- return instrprof_error::success;;
+ return instrprof_error::success;
}
auto &Data = Where->getValue();