Skip to content

Commit dc7dcc6

Browse files
committed
Update style to match upstream change
1 parent 77a7596 commit dc7dcc6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

llvm/lib/Support/BLAKE3/blake3_neon.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,11 @@ INLINE void load_counters4(uint64_t counter, bool increment_counter,
245245
counter_high(counter + (mask & 2)), counter_high(counter + (mask & 3)));
246246
}
247247

248-
static
249-
void blake3_hash4_neon(const uint8_t *const *inputs, size_t blocks,
250-
const uint32_t key[8], uint64_t counter,
251-
bool increment_counter, uint8_t flags,
252-
uint8_t flags_start, uint8_t flags_end, uint8_t *out) {
248+
static void blake3_hash4_neon(const uint8_t *const *inputs, size_t blocks,
249+
const uint32_t key[8], uint64_t counter,
250+
bool increment_counter, uint8_t flags,
251+
uint8_t flags_start, uint8_t flags_end,
252+
uint8_t *out) {
253253
uint32x4_t h_vecs[8] = {
254254
set1_128(key[0]), set1_128(key[1]), set1_128(key[2]), set1_128(key[3]),
255255
set1_128(key[4]), set1_128(key[5]), set1_128(key[6]), set1_128(key[7]),

0 commit comments

Comments
 (0)