Remove verification after PHIElimination when using LiveIntervals, and move it
[oota-llvm.git] / lib / CodeGen / TwoAddressInstructionPass.cpp
index 8e6f809747710ccf2c0671c8e652a42dfc4bf359..f5d41c786af02910d120fcec1da3fc46b4d7a60d 100644 (file)
@@ -1437,6 +1437,9 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &Func) {
     }
   }
 
+  if (LIS)
+    MF->verify(this, "After two-address instruction pass");
+
   return MadeChange;
 }