Convert int to Twine instead of using utostr since it was already being added to a Twine. NFC

llvm-svn: 259308
This commit is contained in:
Craig Topper 2016-01-31 00:15:35 +00:00
parent 313496b7c4
commit 2ed5369424
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ namespace {
} }
std::string getDescription() const { std::string getDescription() const {
return (Twine(IsArg ? "Argument #" : "Return value #") + utostr(Idx) + return (Twine(IsArg ? "Argument #" : "Return value #") + Twine(Idx) +
" of function " + F->getName()).str(); " of function " + F->getName()).str();
} }
}; };