[cfe-commits] r77848 - /cfe/trunk/lib/CodeGen/CGCall.cpp
Daniel Dunbar
daniel at zuster.org
Sat Aug 1 18:43:57 PDT 2009
Author: ddunbar
Date: Sat Aug 1 20:43:57 2009
New Revision: 77848
URL: http://llvm.org/viewvc/llvm-project?rev=77848&view=rev
Log:
Use Twine instead of utostr
Modified:
cfe/trunk/lib/CodeGen/CGCall.cpp
Modified: cfe/trunk/lib/CodeGen/CGCall.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGCall.cpp?rev=77848&r1=77847&r2=77848&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGCall.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGCall.cpp Sat Aug 1 20:43:57 2009
@@ -594,7 +594,7 @@
// 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;
}
More information about the cfe-commits
mailing list