8349003: NativeCallStack::print_on() output is unreadable

Reviewed-by: stuefe, dholmes
This commit is contained in:
Zhengyu Gu 2025-01-30 16:14:43 +00:00
parent fdfb68c8d0
commit 0cae888046

View File

@ -113,6 +113,6 @@ void NativeCallStack::print_on(outputStream* out) const {
DEBUG_ONLY(assert_not_fake();)
for (int i = 0; i < NMT_TrackingStackDepth && _stack[i] != nullptr; i++) {
print_frame(out, _stack[i]);
out->cr();
}
out->cr();
}