OSDN Git Service

Use a reference. Don't make a useless copy of the vector.
authorBill Wendling <isanbard@gmail.com>
Thu, 23 Jun 2011 07:55:41 +0000 (07:55 +0000)
committerBill Wendling <isanbard@gmail.com>
Thu, 23 Jun 2011 07:55:41 +0000 (07:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133707 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCDwarf.cpp

index a35506b..d232d84 100644 (file)
@@ -759,7 +759,7 @@ const MCSymbol &FrameEmitterImpl::EmitCIE(MCStreamer &streamer,
 
   // Initial Instructions
 
-  const std::vector<MachineMove> Moves = asmInfo.getInitialFrameState();
+  const std::vector<MachineMove> &Moves = asmInfo.getInitialFrameState();
   std::vector<MCCFIInstruction> Instructions;
 
   for (int i = 0, n = Moves.size(); i != n; ++i) {