[llvm-commits] [llvm] r83566 - /llvm/trunk/lib/Target/ARM/ARMISelDAGToDAG.cpp

Bob Wilson bob.wilson at apple.com
Thu Oct 8 11:52:56 PDT 2009


Author: bwilson
Date: Thu Oct  8 13:52:56 2009
New Revision: 83566

URL: http://llvm.org/viewvc/llvm-project?rev=83566&view=rev
Log:
Clean up some unnecessary initializations.

Modified:
    llvm/trunk/lib/Target/ARM/ARMISelDAGToDAG.cpp

Modified: llvm/trunk/lib/Target/ARM/ARMISelDAGToDAG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMISelDAGToDAG.cpp?rev=83566&r1=83565&r2=83566&view=diff

==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMISelDAGToDAG.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMISelDAGToDAG.cpp Thu Oct  8 13:52:56 2009
@@ -1405,7 +1405,7 @@
       }
       // Quad registers are loaded with two separate instructions, where one
       // loads the even registers and the other loads the odd registers.
-      EVT RegVT = VT;
+      EVT RegVT;
       unsigned Opc2 = 0;
       switch (VT.getSimpleVT().SimpleTy) {
       default: llvm_unreachable("unhandled vld3 type");
@@ -1465,7 +1465,7 @@
       }
       // Quad registers are loaded with two separate instructions, where one
       // loads the even registers and the other loads the odd registers.
-      EVT RegVT = VT;
+      EVT RegVT;
       unsigned Opc2 = 0;
       switch (VT.getSimpleVT().SimpleTy) {
       default: llvm_unreachable("unhandled vld4 type");





More information about the llvm-commits mailing list