forked from OSchip/llvm-project
Remove an invalid assert that is really just asserting when the scheduler emits
a suboptimal schedule. llvm-svn: 140643
This commit is contained in:
parent
be4b363060
commit
7a6e8f2c5d
|
@ -213,7 +213,6 @@ void ScoreboardHazardRecognizer::EmitInstruction(SUnit *SU) {
|
|||
freeUnits = freeUnit & (freeUnit - 1);
|
||||
} while (freeUnits);
|
||||
|
||||
assert(freeUnit && "No function unit available!");
|
||||
if (IS->getReservationKind() == InstrStage::Required)
|
||||
RequiredScoreboard[cycle + i] |= freeUnit;
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue