[llvm-commits] [llvm] r157148 - /llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp

Jakob Stoklund Olesen stoklund at 2pi.dk
Sat May 19 22:28:53 PDT 2012


Author: stoklund
Date: Sun May 20 00:28:53 2012
New Revision: 157148

URL: http://llvm.org/viewvc/llvm-project?rev=157148&view=rev
Log:
Missed a push_back in r157147.

Modified:
    llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp

Modified: llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp?rev=157148&r1=157147&r2=157148&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp (original)
+++ llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp Sun May 20 00:28:53 2012
@@ -1317,7 +1317,6 @@
       continue;
 
     LHSValsDefinedFromRHS[VNI] = OtherVNI;
-    DeadCopies.push_back(MI);
   }
 
   // Loop over the value numbers of the RHS, seeing if any are defined from





More information about the llvm-commits mailing list