Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/library_call.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3275,7 +3275,7 @@ bool LibraryCallKit::inline_native_jvm_commit() {
lease_compare_io->init_req(_true_path, i_o());
lease_compare_io->init_req(_false_path, input_io_state);

lease_result_value->init_req(_true_path, null()); // if the lease was returned, return 0.
lease_result_value->init_req(_true_path, _gvn.longcon(0)); // if the lease was returned, return 0L.
lease_result_value->init_req(_false_path, arg); // if not lease, return new updated position.

RegionNode* result_rgn = new RegionNode(PATH_LIMIT);
Expand Down