Remove a not-yet-true assert

In some circumstances we create unreachable blocks,
making the assert invalid. Currently nothing depends on the
assert being true, so remove it for now.
Esse commit está contido em:
mwilliams
2013-06-24 08:20:47 -07:00
commit de Sara Golemon
commit 07dde58004
-1
Ver Arquivo
@@ -192,7 +192,6 @@ bool checkCfg(IRTrace* trace, const IRFactory& factory) {
}
for (Block* b : blocks) {
for (DEBUG_ONLY auto const &e : b->preds()) {
assert(edges.find(&e) != edges.end());
assert(&e == takenEdge(e.from()) || &e == nextEdge(e.from()));
assert(e.to() == b);
}