We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e04a310 commit f2f7a49Copy full SHA for f2f7a49
src/hotspot/share/opto/library_call.cpp
@@ -3275,7 +3275,7 @@ bool LibraryCallKit::inline_native_jvm_commit() {
3275
lease_compare_io->init_req(_true_path, i_o());
3276
lease_compare_io->init_req(_false_path, input_io_state);
3277
3278
- 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.
3279
lease_result_value->init_req(_false_path, arg); // if not lease, return new updated position.
3280
3281
RegionNode* result_rgn = new RegionNode(PATH_LIMIT);
0 commit comments