[llvm] r206708 - ProfileData: Remove an extra semicolon
Justin Bogner
mail at justinbogner.com
Sat Apr 19 16:42:50 PDT 2014
Author: bogner
Date: Sat Apr 19 18:42:50 2014
New Revision: 206708
URL: http://llvm.org/viewvc/llvm-project?rev=206708&view=rev
Log:
ProfileData: Remove an extra semicolon
Spotted by Nick Lewycky in review, thanks!
Modified:
llvm/trunk/lib/ProfileData/InstrProfWriter.cpp
Modified: llvm/trunk/lib/ProfileData/InstrProfWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ProfileData/InstrProfWriter.cpp?rev=206708&r1=206707&r2=206708&view=diff
==============================================================================
--- llvm/trunk/lib/ProfileData/InstrProfWriter.cpp (original)
+++ llvm/trunk/lib/ProfileData/InstrProfWriter.cpp Sat Apr 19 18:42:50 2014
@@ -75,7 +75,7 @@ error_code InstrProfWriter::addFunctionC
auto &Data = FunctionData[FunctionName];
Data.Hash = FunctionHash;
Data.Counts = Counters;
- return instrprof_error::success;;
+ return instrprof_error::success;
}
auto &Data = Where->getValue();
More information about the llvm-commits
mailing list