From: Justin Bogner Date: Sat, 19 Apr 2014 23:42:50 +0000 (+0000) Subject: ProfileData: Remove an extra semicolon X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=be76c2adceecdf292efb7bf6333afdcf032f0ac6;p=oota-llvm.git 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 --- 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();