changeset 58579:ca116bb90caf

8241586: compiler/cpuflags/TestAESIntrinsicsOnUnsupportedConfig.java fails on aarch64 Reviewed-by: clanger
author mbaesken
date Wed, 25 Mar 2020 13:05:42 +0100
parents 4327d2c64129
children 63a288f3f25a
files src/hotspot/cpu/aarch64/vm_version_aarch64.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/hotspot/cpu/aarch64/vm_version_aarch64.cpp	Tue Mar 24 10:31:37 2020 +0100
+++ b/src/hotspot/cpu/aarch64/vm_version_aarch64.cpp	Wed Mar 25 13:05:42 2020 +0100
@@ -327,11 +327,11 @@
     }
   } else {
     if (UseAES) {
-      warning("UseAES specified, but not supported on this CPU");
+      warning("AES instructions are not available on this CPU");
       FLAG_SET_DEFAULT(UseAES, false);
     }
     if (UseAESIntrinsics) {
-      warning("UseAESIntrinsics specified, but not supported on this CPU");
+      warning("AES intrinsics are not available on this CPU");
       FLAG_SET_DEFAULT(UseAESIntrinsics, false);
     }
   }