summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2022-08-02 23:03:51 -0700
committerShawn Hoffman <godisgovernment@gmail.com>2022-08-02 23:03:51 -0700
commit4e6aa28da45b4b618f0ede639d4e0477fb124c0a (patch)
treec808285c3fb3cc5953651926b44a6114b5346735 /Source/Core/Common
parent7d2d5d914bf3cacbecbb0bf8a642b616744aad54 (diff)
crypto/aes: silence warning on godforsaken android gcc
Diffstat (limited to 'Source/Core/Common')
-rw-r--r--Source/Core/Common/Crypto/AES.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Crypto/AES.cpp b/Source/Core/Common/Crypto/AES.cpp
index 7c67766ed4..fe8f4ec728 100644
--- a/Source/Core/Common/Crypto/AES.cpp
+++ b/Source/Core/Common/Crypto/AES.cpp
@@ -264,7 +264,7 @@ public:
template <size_t RoundIdx>
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)
round_keys[RoundIdx] = rk_block;
else