1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-11 05:26:05 +02:00

forgot about UNDEFINED

This commit is contained in:
divinity76 2024-02-05 15:59:54 +01:00 committed by GitHub
parent ba665ca9f1
commit 349f8300f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -160,7 +160,7 @@ static
uint64_t id_aa64pfr0_el1;
__asm__ ("mrs %0, ID_AA64PFR0_EL1" : "=r" (id_aa64pfr0_el1));
if((id_aa64pfr0_el1 >> 20) & 0xF) {
features |= ARM_NEON;
features = ARM_NEON;
} else {
features = 0;
}