[llvm] r204489 - ProfileData: Introduce InstrProfWriter using the naive text format

Justin Bogner mail at justinbogner.com
Sat Apr 19 16:51:13 PDT 2014


Nick Lewycky <nlewycky at google.com> writes:
>     + auto Where = FunctionData.find(FunctionName);
>     + if (Where == FunctionData.end()) {
>     +   // If this is the first time we've seen this function, just add it.
>     +   FunctionData[FunctionName] = {FunctionHash, Counters};
>     +   return instrprof_error::success;;
>
> Extra bonus semicolon!

Guess we don't need that ;)

Fixed in r206708. Thanks!



More information about the llvm-commits mailing list