diff --git a/hphp/runtime/vm/jit/check.cpp b/hphp/runtime/vm/jit/check.cpp index 7c77cd00f..777cf2e45 100644 --- a/hphp/runtime/vm/jit/check.cpp +++ b/hphp/runtime/vm/jit/check.cpp @@ -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); }