From 978182d22933334af3903c81a201e7c2dfda8a6a Mon Sep 17 00:00:00 2001 From: Andrew Haley Date: Fri, 6 Feb 2015 10:21:46 -0800 Subject: [PATCH] 8072698: Add AArch64 support to hsdis Reviewed-by: kvn --- hotspot/src/share/tools/hsdis/hsdis.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hotspot/src/share/tools/hsdis/hsdis.c b/hotspot/src/share/tools/hsdis/hsdis.c index 268084d1667..acc90f88366 100644 --- a/hotspot/src/share/tools/hsdis/hsdis.c +++ b/hotspot/src/share/tools/hsdis/hsdis.c @@ -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!";