ProfileData: Remove an extra semicolon
authorJustin Bogner <mail@justinbogner.com>
Sat, 19 Apr 2014 23:42:50 +0000 (23:42 +0000)
committerJustin Bogner <mail@justinbogner.com>
Sat, 19 Apr 2014 23:42:50 +0000 (23:42 +0000)
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

index 19b6890b36bb7565f84446a6df1cc4db706f569b..83d03d6a2879b3ae1d08e60a2c8a867731dc3eff 100644 (file)
@@ -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();