Skip to content

Commit 6d8fa8f

Browse files
committed
8255286: Implement ParametersTypeData::print_data_on fully
Reviewed-by: dholmes
1 parent 63b9f8c commit 6d8fa8f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/hotspot/share/oops/methodData.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,8 +637,10 @@ bool ParametersTypeData::profiling_enabled() {
637637
}
638638

639639
void ParametersTypeData::print_data_on(outputStream* st, const char* extra) const {
640-
st->print("parameter types"); // FIXME extra ignored?
640+
print_shared(st, "ParametersTypeData", extra);
641+
tab(st);
641642
_parameters.print_data_on(st);
643+
st->cr();
642644
}
643645

644646
void SpeculativeTrapData::print_data_on(outputStream* st, const char* extra) const {

0 commit comments

Comments
 (0)