1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Remove disabled assertion.

llvm-svn: 111531
This commit is contained in:
Evan Cheng 2010-08-19 17:33:48 +00:00
parent 2edab9ddea
commit f34da99d49

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;
}