diff options
author | Dan Gohman <gohman@apple.com> | 2010-06-21 19:47:52 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-06-21 19:47:52 +0000 |
commit | dd41bba517d990f16ad0ce9fb585f51c77dcc9c0 (patch) | |
tree | 43e069c453a0050fa64e5112a8511581afa78a6a /llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp | |
parent | d34da45a83a6d0428abe3d7824be563e56e65731 (diff) | |
download | bcm5719-llvm-dd41bba517d990f16ad0ce9fb585f51c77dcc9c0.tar.gz bcm5719-llvm-dd41bba517d990f16ad0ce9fb585f51c77dcc9c0.zip |
Use A.append(...) instead of A.insert(A.end(), ...) when A is a
SmallVector, and other SmallVector simplifications.
llvm-svn: 106452
Diffstat (limited to 'llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp b/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp index 02eae5ba133..fc4cecea9b9 100644 --- a/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp +++ b/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp @@ -603,9 +603,8 @@ ComputeLiveInBlocks(AllocaInst *AI, AllocaInfo &Info, // To determine liveness, we must iterate through the predecessors of blocks // where the def is live. Blocks are added to the worklist if we need to // check their predecessors. Start with all the using blocks. - SmallVector<BasicBlock*, 64> LiveInBlockWorklist; - LiveInBlockWorklist.insert(LiveInBlockWorklist.end(), - Info.UsingBlocks.begin(), Info.UsingBlocks.end()); + SmallVector<BasicBlock*, 64> LiveInBlockWorklist(Info.UsingBlocks.begin(), + Info.UsingBlocks.end()); // If any of the using blocks is also a definition block, check to see if the // definition occurs before or after the use. If it happens before the use, |