mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-23 10:50:58 +00:00
Remove the non-initial parentless node check.
Its purpose was to catch when the old dead block remover failed to remove unreachable blocks, but that code is now gone.
This commit is contained in:
parent
83ead0842f
commit
a7e9defebd
1 changed files with 0 additions and 5 deletions
|
@ -899,11 +899,6 @@ flow_find_predecessors (flowgraph_t *graph)
|
|||
set_add (graph->nodes[succ->value]->predecessors, i);
|
||||
}
|
||||
}
|
||||
for (i = 1; i < graph->num_nodes; i++) {
|
||||
node = graph->nodes[i];
|
||||
if (set_is_empty (node->predecessors))
|
||||
internal_error (0, "non-initial node with no predecessors");
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue