From 909b9a2c66441e85ebdbf3e96e84988cf0107850 Mon Sep 17 00:00:00 2001 From: divinity76 Date: Fri, 9 Feb 2024 23:04:51 +0100 Subject: [PATCH] formatting --- c/blake3_neon.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/c/blake3_neon.c b/c/blake3_neon.c index b80f1fcfc..90bdd572c 100644 --- a/c/blake3_neon.c +++ b/c/blake3_neon.c @@ -9,13 +9,13 @@ #endif INLINE uint32x4_t loadu_128(const uint8_t src[16]) { - // vld1q_u32 has alignment requirements. Don't use it. - return vreinterpretq_u32_u8(vld1q_u8(src)); + // vld1q_u32 has alignment requirements. Don't use it. + return vreinterpretq_u32_u8(vld1q_u8(src)); } INLINE void storeu_128(uint32x4_t src, uint8_t dest[16]) { - // vst1q_u32 has alignment requirements. Don't use it. - vst1q_u8(dest, vreinterpretq_u8_u32(src)); + // vst1q_u32 has alignment requirements. Don't use it. + vst1q_u8(dest, vreinterpretq_u8_u32(src)); } INLINE uint32x4_t add_128(uint32x4_t a, uint32x4_t b) {