Remove disabled assertion.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111531 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2010-08-19 17:33:48 +00:00
parent 4dc301a7c5
commit c546c75459

View File

@ -422,8 +422,6 @@ bool MachineSinking::SinkInstruction(MachineInstr *MI, bool &SawStore) {
" BB#" << ParentBlock->getNumber()
<< " -- BB#" << NewSucc->getNumber()
<< " -- BB#" << SuccToSinkTo->getNumber() << '\n');
//assert(DT->dominates(NewSucc, SuccToSinkTo) &&
//"New BB doesn't dominate all uses!");
SuccToSinkTo = NewSucc;
++NumSplit;
}