aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-22 20:46:46 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-22 20:46:46 +0000
commitdfd3b647839d3f944b5d8bffd6e9a2ec022d3507 (patch)
tree476f804d5a32019a215612a83ebf06aaf307780f /lib
parent67e59834fc1dca7e357c40af2e5144f3d62f5133 (diff)
downloadexternal_llvm-dfd3b647839d3f944b5d8bffd6e9a2ec022d3507.zip
external_llvm-dfd3b647839d3f944b5d8bffd6e9a2ec022d3507.tar.gz
external_llvm-dfd3b647839d3f944b5d8bffd6e9a2ec022d3507.tar.bz2
Remove unnecessary store to temporary std::string.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76782 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/IPO/ArgumentPromotion.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Transforms/IPO/ArgumentPromotion.cpp b/lib/Transforms/IPO/ArgumentPromotion.cpp
index 3a97aa8..472f4ea 100644
--- a/lib/Transforms/IPO/ArgumentPromotion.cpp
+++ b/lib/Transforms/IPO/ArgumentPromotion.cpp
@@ -762,9 +762,10 @@ Function *ArgPromotion::DoPromotion(Function *F,
for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Idxs[1] = Context.getConstantInt(Type::Int32Ty, i);
- std::string Name = TheAlloca->getName()+"."+utostr(i);
- Value *Idx = GetElementPtrInst::Create(TheAlloca, Idxs, Idxs+2,
- Name, InsertPt);
+ Value *Idx =
+ GetElementPtrInst::Create(TheAlloca, Idxs, Idxs+2,
+ TheAlloca->getName()+"."+utostr(i),
+ InsertPt);
I2->setName(I->getName()+"."+utostr(i));
new StoreInst(I2++, Idx, InsertPt);
}