From: Jakob Stoklund Olesen Date: Tue, 14 Dec 2010 00:58:47 +0000 (+0000) Subject: Remove unused vector. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=885b3283eacb01bf281245ed0c19ae8ccca1fc8a;p=oota-llvm.git Remove unused vector. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121741 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/RegAllocGreedy.cpp b/lib/CodeGen/RegAllocGreedy.cpp index 402898905e4..943da11ad37 100644 --- a/lib/CodeGen/RegAllocGreedy.cpp +++ b/lib/CodeGen/RegAllocGreedy.cpp @@ -273,7 +273,7 @@ unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order, unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg, SmallVectorImpl &SplitVRegs) { // Populate a list of physical register spill candidates. - SmallVector PhysRegSpillCands, ReassignCands; + SmallVector PhysRegSpillCands; // Check for an available register in this class. AllocationOrder Order(VirtReg.reg, *VRM, ReservedRegs);