# HG changeset patch # User aph # Date 1423246906 28800 # Node ID 07d26bb7e4bcfcfd0c0bb2b0bd73b0898c091620 # Parent 9917b8aed9275dec3681cd3fc384bf36909b119f 8072698: Add AArch64 support to hsdis Reviewed-by: kvn diff -r 9917b8aed927 -r 07d26bb7e4bc hotspot/src/share/tools/hsdis/hsdis.c --- a/hotspot/src/share/tools/hsdis/hsdis.c Thu Feb 05 11:47:33 2015 -0800 +++ b/hotspot/src/share/tools/hsdis/hsdis.c Fri Feb 06 10:21:46 2015 -0800 @@ -463,6 +463,9 @@ #ifdef LIBARCH_ppc64 res = "powerpc:common64"; #endif +#ifdef LIBARCH_aarch64 + res = "aarch64"; +#endif if (res == NULL) res = "architecture not set in Makefile!"; return res;