Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8270155: ARM32: Improve register dump in hs_err
Reviewed-by: dholmes, stuefe
  • Loading branch information
shipilev committed Jul 14, 2021
1 parent b6d7653 commit 589a1d5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/hotspot/os_cpu/linux_arm/os_linux_arm.cpp
Expand Up @@ -468,9 +468,8 @@ void os::print_register_info(outputStream *st, const void *context) {
st->print_cr("Register to memory mapping:");
st->cr();
for (int r = 0; r < ARM_REGS_IN_CONTEXT; r++) {
st->print_cr(" %-3s = " INTPTR_FORMAT, as_Register(r)->name(), reg_area[r]);
st->print(" %-3s = ", as_Register(r)->name());
print_location(st, reg_area[r]);
st->cr();
}
st->cr();
}
Expand Down

1 comment on commit 589a1d5

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.