Whitespace check-in

pull/733/head
Jeffrey Walton 2018-11-03 16:42:35 -04:00
parent 6aa6393bf3
commit aee045912a
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 114 additions and 114 deletions

View File

@ -643,10 +643,10 @@ void BLAKE2_Compress32_NEON(const byte* input, BLAKE2s_State& state)
BLAKE2S_UNDIAGONALIZE(row1,row2,row3,row4); \
} while(0)
const uint32x4_t m0 = vreinterpretq_u32_u8(vld1q_u8((input + 00)));
const uint32x4_t m1 = vreinterpretq_u32_u8(vld1q_u8((input + 16)));
const uint32x4_t m2 = vreinterpretq_u32_u8(vld1q_u8((input + 32)));
const uint32x4_t m3 = vreinterpretq_u32_u8(vld1q_u8((input + 48)));
const uint32x4_t m0 = vreinterpretq_u32_u8(vld1q_u8(input + 00));
const uint32x4_t m1 = vreinterpretq_u32_u8(vld1q_u8(input + 16));
const uint32x4_t m2 = vreinterpretq_u32_u8(vld1q_u8(input + 32));
const uint32x4_t m3 = vreinterpretq_u32_u8(vld1q_u8(input + 48));
uint32x4_t row1, row2, row3, row4;