Skip to content

Commit c984562

Browse files
committed
Adaptation for missing JDK-8334738.
1 parent b3993fa commit c984562

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hotspot/share/code/nmethod.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3589,7 +3589,7 @@ void nmethod::print_code_snippet(outputStream* st, address addr) const {
35893589
}
35903590

35913591
// Always print hex. Disassembler may still have problems when hitting an incorrect instruction start.
3592-
os::print_hex_dump(st, start_for_hex_dump, end, 1, /* print_ascii=*/false);
3592+
os::print_hex_dump(st, start_for_hex_dump, end, 1);
35933593
if (!Disassembler::is_abstract()) {
35943594
Disassembler::decode(start, end, st);
35953595
}

0 commit comments

Comments
 (0)