From: Daniel Dunbar Date: Sun, 2 Aug 2009 01:43:57 +0000 (+0000) Subject: Use Twine instead of utostr X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ab9a25101efeb56620a99118bee116ae052a7ca;p=clang Use Twine instead of utostr git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77848 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGCall.cpp b/lib/CodeGen/CGCall.cpp index be30fcc5ca..31ed8a6390 100644 --- a/lib/CodeGen/CGCall.cpp +++ b/lib/CodeGen/CGCall.cpp @@ -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; }