8231841: AArch64: debug.cpp help() is missing an AArch64 line for pns
authorsmonteith
Wed, 13 Nov 2019 17:24:53 +0800
changeset 59049 dc1899bb84c0
parent 59047 6c78185c99d7
child 59050 7bbaa3c416e7
8231841: AArch64: debug.cpp help() is missing an AArch64 line for pns Summary: Adds missing line for aarch64 to debug.cpp help() for pns Reviewed-by: adinn Contributed-by: alan.hayward@arm.com
src/hotspot/share/utilities/debug.cpp
--- a/src/hotspot/share/utilities/debug.cpp	Wed Nov 13 09:09:41 2019 +0000
+++ b/src/hotspot/share/utilities/debug.cpp	Wed Nov 13 17:24:53 2019 +0800
@@ -642,6 +642,7 @@
   tty->print_cr("  pns(void* sp, void* fp, void* pc)  - print native (i.e. mixed) stack trace. E.g.");
   tty->print_cr("                   pns($sp, $rbp, $pc) on Linux/amd64 and Solaris/amd64 or");
   tty->print_cr("                   pns($sp, $ebp, $pc) on Linux/x86 or");
+  tty->print_cr("                   pns($sp, $fp, $pc)  on Linux/AArch64 or");
   tty->print_cr("                   pns($sp, 0, $pc)    on Linux/ppc64 or");
   tty->print_cr("                   pns($sp, $s8, $pc)  on Linux/mips or");
   tty->print_cr("                   pns($sp + 0x7ff, 0, $pc) on Solaris/SPARC");