mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
Add casts for NEON
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
c37ad4432b
commit
e467d62042
|
|
@ -385,8 +385,8 @@ static inline uint8x16_t pmull_low(uint8x16_t a, uint8x16_t b)
|
||||||
|
|
||||||
return vreinterpretq_u8_p128(
|
return vreinterpretq_u8_p128(
|
||||||
MBEDTLS_VMULL_P64(
|
MBEDTLS_VMULL_P64(
|
||||||
vget_low_p64(vreinterpretq_p64_u8(a)),
|
(poly64_t) vget_low_p64(vreinterpretq_p64_u8(a)),
|
||||||
vget_low_p64(vreinterpretq_p64_u8(b))
|
(poly64_t) vget_low_p64(vreinterpretq_p64_u8(b))
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue