Skip to content

Commit 43f329b

Browse files
committed
fix build as 8276455: C2: iterative EA is not in 17.
1 parent 70bbadf commit 43f329b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hotspot/share/opto/escape.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2923,7 +2923,7 @@ void ConnectionGraph::move_inst_mem(Node* n, GrowableArray<PhiNode *> &orig_phi
29232923
#define FIND_INST_MEM_RECURSION_DEPTH_LIMIT 1000
29242924
Node* ConnectionGraph::find_inst_mem(Node *orig_mem, int alias_idx, GrowableArray<PhiNode *> &orig_phis, uint rec_depth) {
29252925
if (rec_depth > FIND_INST_MEM_RECURSION_DEPTH_LIMIT) {
2926-
_compile->record_failure(_invocation > 0 ? C2Compiler::retry_no_iterative_escape_analysis() : C2Compiler::retry_no_escape_analysis());
2926+
_compile->record_failure(C2Compiler::retry_no_escape_analysis());
29272927
return nullptr;
29282928
}
29292929
if (orig_mem == nullptr) {

0 commit comments

Comments
 (0)