forked from OSchip/llvm-project
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:
parent
313496b7c4
commit
2ed5369424
|
@ -74,7 +74,7 @@ namespace {
|
|||
}
|
||||
|
||||
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();
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue