From be76c2adceecdf292efb7bf6333afdcf032f0ac6 Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Sat, 19 Apr 2014 23:42:50 +0000 Subject: [PATCH] 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 --- lib/ProfileData/InstrProfWriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ProfileData/InstrProfWriter.cpp b/lib/ProfileData/InstrProfWriter.cpp index 19b6890b36b..83d03d6a287 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(); -- 2.34.1