8317998: Temporarily disable malformed control flow assert to reduce noise in testing

Reviewed-by: epeter
This commit is contained in:
Tobias Hartmann 2023-10-12 09:50:18 +00:00
parent 00ef9f9c32
commit 7633a76607

View File

@ -4009,8 +4009,6 @@ bool Compile::final_graph_reshaping() {
// Recheck with a better notion of 'required_outcnt'
if (n->outcnt() != required_outcnt) {
DEBUG_ONLY( n->dump_bfs(1, 0, "-"); );
assert(false, "malformed control flow");
record_method_not_compilable("malformed control flow");
return true; // Not all targets reachable!
}