diff options
| author | Justin Bogner <mail@justinbogner.com> | 2014-04-19 23:42:50 +0000 |
|---|---|---|
| committer | Justin Bogner <mail@justinbogner.com> | 2014-04-19 23:42:50 +0000 |
| commit | a2bfd66e0e74cc4592c9d04d8a67a73346451df8 (patch) | |
| tree | 7d57fcf787e8208eead955bc5fbe8678b4078e26 | |
| parent | e63327e9676aad50dfcb1a82930ac5595f139f29 (diff) | |
| download | bcm5719-llvm-a2bfd66e0e74cc4592c9d04d8a67a73346451df8.tar.gz bcm5719-llvm-a2bfd66e0e74cc4592c9d04d8a67a73346451df8.zip | |
ProfileData: Remove an extra semicolon
Spotted by Nick Lewycky in review, thanks!
llvm-svn: 206708
| -rw-r--r-- | llvm/lib/ProfileData/InstrProfWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ProfileData/InstrProfWriter.cpp b/llvm/lib/ProfileData/InstrProfWriter.cpp index 19b6890b36b..83d03d6a287 100644 --- a/llvm/lib/ProfileData/InstrProfWriter.cpp +++ b/llvm/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(); |

