Skip to content

Commit

Permalink
8241586: compiler/cpuflags/TestAESIntrinsicsOnUnsupportedConfig.java …
Browse files Browse the repository at this point in the history
…fails on aarch64

Reviewed-by: clanger
  • Loading branch information
MBaesken committed Mar 25, 2020
1 parent 85d5048 commit c9f5004
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hotspot/cpu/aarch64/vm_version_aarch64.cpp
Expand Up @@ -327,11 +327,11 @@ void VM_Version::get_processor_features() {
}
} 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);
}
}
Expand Down

0 comments on commit c9f5004

Please sign in to comment.