Skip to content

Commit 779b4e1

Browse files
Yuta SatoYaSuenag
Yuta Sato
authored andcommittedJun 29, 2022
8287001: Add warning message when fail to load hsdis libraries
Reviewed-by: kvn, ysuenaga
1 parent 910053b commit 779b4e1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/hotspot/share/compiler/disassembler.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -837,6 +837,8 @@ bool Disassembler::load_library(outputStream* st) {
837837
if (_library != NULL) {
838838
_decode_instructions_virtual = CAST_TO_FN_PTR(Disassembler::decode_func_virtual,
839839
os::dll_lookup(_library, decode_instructions_virtual_name));
840+
} else {
841+
log_warning(os)("Loading hsdis library failed");
840842
}
841843
_tried_to_load_library = true;
842844
_library_usable = _decode_instructions_virtual != NULL;

0 commit comments

Comments
 (0)
Please sign in to comment.