This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8239852: java/util/concurrent tests fail with -XX:+VerifyGraphEdges: …
…assert(!VerifyGraphEdges) failed: verification should have failed Remove an assertion which was too strong for some valid IRs when running with -XX:+VerifyGraphEdges Reviewed-by: neliasso, thartmann
- Loading branch information
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1439,8 +1439,6 @@ void PhaseCFG::global_code_motion() { | ||
// ( visited.clear() called in schedule_late()->Node_Backward_Iterator() ) | ||
schedule_late(visited, stack); | ||
if (C->failing()) { | ||
return; | ||
} | ||
|
||