diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-02 01:43:57 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-02 01:43:57 +0000 |
commit | 0ab9a25101efeb56620a99118bee116ae052a7ca (patch) | |
tree | 78a7b0de164929a034564b30e92e5ee253d15783 /lib/CodeGen/CGCall.cpp | |
parent | 0908c333cc251540dfcf17ac4a9b07ea6da27aaf (diff) |
Use Twine instead of utostr
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77848 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGCall.cpp')
-rw-r--r-- | lib/CodeGen/CGCall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |