Skip to content

Commit f529bf7

Browse files
cnqpzhangAndrew Haley
authored and
Andrew Haley
committedFeb 26, 2025
8350483: AArch64: turn on signum intrinsics by default on Ampere CPUs
Reviewed-by: aph
1 parent 037e471 commit f529bf7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/hotspot/cpu/aarch64/vm_version_aarch64.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,9 @@ void VM_Version::initialize() {
161161
(_model == CPU_MODEL_AMPERE_1A || _model == CPU_MODEL_AMPERE_1B)) {
162162
FLAG_SET_DEFAULT(CodeEntryAlignment, 32);
163163
}
164+
if (FLAG_IS_DEFAULT(UseSignumIntrinsic)) {
165+
FLAG_SET_DEFAULT(UseSignumIntrinsic, true);
166+
}
164167
}
165168

166169
// ThunderX

0 commit comments

Comments
 (0)
Please sign in to comment.