From 7633a76607e264ce578f3c0e1d393c1016bc6b95 Mon Sep 17 00:00:00 2001 From: Tobias Hartmann Date: Thu, 12 Oct 2023 09:50:18 +0000 Subject: [PATCH] 8317998: Temporarily disable malformed control flow assert to reduce noise in testing Reviewed-by: epeter --- src/hotspot/share/opto/compile.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/hotspot/share/opto/compile.cpp b/src/hotspot/share/opto/compile.cpp index 42729fcd214..8ea8095413b 100644 --- a/src/hotspot/share/opto/compile.cpp +++ b/src/hotspot/share/opto/compile.cpp @@ -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! }