mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-08 13:43:33 +01:00
crypto/aes: silence warning on godforsaken android gcc
This commit is contained in:
parent
7d2d5d914b
commit
4e6aa28da4
@ -264,7 +264,7 @@ public:
|
|||||||
template <size_t RoundIdx>
|
template <size_t RoundIdx>
|
||||||
inline constexpr void StoreRoundKey(const u32* rk)
|
inline constexpr void StoreRoundKey(const u32* rk)
|
||||||
{
|
{
|
||||||
const uint8x16_t rk_block = vld1q_u32(rk);
|
const uint8x16_t rk_block = vreinterpretq_u8_u32(vld1q_u32(rk));
|
||||||
if constexpr (AesMode == Mode::Encrypt)
|
if constexpr (AesMode == Mode::Encrypt)
|
||||||
round_keys[RoundIdx] = rk_block;
|
round_keys[RoundIdx] = rk_block;
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user