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 9953843 commit a92ac4eCopy full SHA for a92ac4e
src/hotspot/share/opto/library_call.cpp
@@ -3245,7 +3245,7 @@ bool LibraryCallKit::inline_native_jvm_commit() {
3245
lease_compare_io->init_req(_true_path, i_o());
3246
lease_compare_io->init_req(_false_path, input_io_state);
3247
3248
- 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.
3249
lease_result_value->init_req(_false_path, arg); // if not lease, return new updated position.
3250
3251
RegionNode* result_rgn = new RegionNode(PATH_LIMIT);
0 commit comments