Use Twine instead of utostr

llvm-svn: 77848
This commit is contained in:
Daniel Dunbar 2009-08-02 01:43:57 +00:00
parent c16c75ea9b
commit 4074b93184
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ void CodeGenFunction::EmitFunctionProlog(const CGFunctionInfo &FI,
// Name the arguments used in expansion and increment AI.
unsigned Index = 0;
for (; AI != End; ++AI, ++Index)
AI->setName(Name + "." + llvm::utostr(Index));
AI->setName(Name + "." + llvm::Twine(Index));
continue;
}