8072698: Add AArch64 support to hsdis

Reviewed-by: kvn
This commit is contained in:
Andrew Haley 2015-02-06 10:21:46 -08:00
parent 86e7982c2c
commit 978182d229

View File

@ -462,6 +462,9 @@ static const char* native_arch_name() {
#endif
#ifdef LIBARCH_ppc64
res = "powerpc:common64";
#endif
#ifdef LIBARCH_aarch64
res = "aarch64";
#endif
if (res == NULL)
res = "architecture not set in Makefile!";