# HG changeset patch # User chagedorn # Date 1582900424 -3600 # Node ID d99632e69372f13d3ad58bb17d6e04b13b64d6f3 # Parent bd77de4e5e2bc2ccd28762d43447cc7997bdb32f 8239852: java/util/concurrent tests fail with -XX:+VerifyGraphEdges: assert(!VerifyGraphEdges) failed: verification should have failed Summary: Remove an assertion which was too strong for some valid IRs when running with -XX:+VerifyGraphEdges Reviewed-by: neliasso, thartmann diff -r bd77de4e5e2b -r d99632e69372 src/share/vm/opto/gcm.cpp --- a/src/share/vm/opto/gcm.cpp Mon Dec 02 16:38:34 2019 -0800 +++ b/src/share/vm/opto/gcm.cpp Fri Feb 28 15:33:44 2020 +0100 @@ -1307,8 +1307,6 @@ // ( visited.Clear() called in schedule_late()->Node_Backward_Iterator() ) schedule_late(visited, stack); if (C->failing()) { - // schedule_late fails only when graph is incorrect. - assert(!VerifyGraphEdges, "verification should have failed"); return; }