[compiler-rt] [FMV][AArch64] Fix build after edb43192516a55165cc4c158eb4fd4b2d81a8fce (PR #162383)
Jordan Rupprecht via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 7 15:34:29 PDT 2025
================
@@ -10,11 +10,16 @@ void CONSTRUCTOR_ATTRIBUTE __init_cpu_features(void) {
if (__atomic_load_n(&__aarch64_cpu_features.features, __ATOMIC_RELAXED))
return;
+ unsigned long hwcap = getauxval(AT_HWCAP);
+ unsigned long hwcap2 = getauxval(AT_HWCAP2);
+ unsigned long hwcap2 = getauxval(AT_HWCAP3);
----------------
rupprecht wrote:
same
https://github.com/llvm/llvm-project/pull/162383
More information about the llvm-commits
mailing list