From: Jakob Stoklund Olesen Date: Thu, 25 Oct 2012 00:05:39 +0000 (+0000) Subject: Stop running the machine code verifier unconditionally. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3c5e22db7ac9763b376626f1126136e51fba6577;p=oota-llvm.git Stop running the machine code verifier unconditionally. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166646 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/EarlyIfConversion.cpp b/lib/CodeGen/EarlyIfConversion.cpp index 7f28828a5d2..d5d84041b69 100644 --- a/lib/CodeGen/EarlyIfConversion.cpp +++ b/lib/CodeGen/EarlyIfConversion.cpp @@ -797,6 +797,5 @@ bool EarlyIfConverter::runOnMachineFunction(MachineFunction &MF) { if (tryConvertIf(I->getBlock())) Changed = true; - MF.verify(this, "After early if-conversion"); return Changed; }