8132010: aarch64: regression test fails compiler/intrinsics/sha/cli/TestUseSHA256IntrinsicsOptionOnSupportedCPU.java
Summary: Fix type in SHA flag setting code
Reviewed-by: kvn, goetz, aph, zmajo
Contributed-by: alexander.alexeev@caviumnetworks.com
--- a/hotspot/src/cpu/aarch64/vm/vm_version_aarch64.cpp Mon Jul 27 13:44:07 2015 +0200
+++ b/hotspot/src/cpu/aarch64/vm/vm_version_aarch64.cpp Tue Jul 21 14:23:08 2015 +0000
@@ -232,7 +232,7 @@
}
} else if (UseSHA256Intrinsics) {
warning("Intrinsics for SHA-224 and SHA-256 crypto hash functions not available on this CPU.");
- FLAG_SET_DEFAULT(UseSHA1Intrinsics, false);
+ FLAG_SET_DEFAULT(UseSHA256Intrinsics, false);
}
if (UseSHA512Intrinsics) {