Stop running the machine code verifier unconditionally.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Thu, 25 Oct 2012 00:05:39 +0000 (00:05 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Thu, 25 Oct 2012 00:05:39 +0000 (00:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166646 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/EarlyIfConversion.cpp

index 7f28828a5d20adf606408958f5e189aac6f3617e..d5d84041b69f0260f0c59908d9924e95fe7014ba 100644 (file)
@@ -797,6 +797,5 @@ bool EarlyIfConverter::runOnMachineFunction(MachineFunction &MF) {
     if (tryConvertIf(I->getBlock()))
       Changed = true;
 
-  MF.verify(this, "After early if-conversion");
   return Changed;
 }