8231841: AArch64: debug.cpp help() is missing an AArch64 line for pns

Adds missing line for aarch64 to debug.cpp help() for pns

Reviewed-by: adinn
This commit is contained in:
Alan Hayward 2019-11-13 17:24:53 +08:00 committed by Stuart Monteith
parent 9f91b8dde2
commit 9dd7038c43

@ -642,6 +642,7 @@ void help() {
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");