changeset 10691:88961de57e43 icedtea-3.17.0pre01

8215961, PR3797: jdk/jfr/event/os/TestCPUInformation.java fails on AArch64 Reviewed-by: aph, goetz, lucy
author mbaesken
date Thu, 03 Jan 2019 16:14:40 +0100
parents 442fde09c287
children 3511db5b9898
files src/cpu/aarch64/vm/vm_version_ext_aarch64.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/cpu/aarch64/vm/vm_version_ext_aarch64.cpp	Wed Apr 29 20:10:31 2020 +0100
+++ b/src/cpu/aarch64/vm/vm_version_ext_aarch64.cpp	Thu Jan 03 16:14:40 2019 +0100
@@ -49,7 +49,7 @@
   _no_of_threads = _no_of_cores;
   _no_of_sockets = _no_of_cores;
   snprintf(_cpu_name, CPU_TYPE_DESC_BUF_SIZE - 1, "AArch64");
-  snprintf(_cpu_desc, CPU_DETAILED_DESC_BUF_SIZE, "%s", cpu_features());
+  snprintf(_cpu_desc, CPU_DETAILED_DESC_BUF_SIZE, "AArch64 %s", cpu_features());
   _initialized = true;
 }