Skip to content

Commit

Permalink
Style: fix whitespace
Browse files Browse the repository at this point in the history
Checked with:
    git grep "^     " -- "**.h" "**.c" ":(exclude)external"

Reported by:	Tim Düsterhus
  • Loading branch information
gperciva committed Nov 17, 2024
1 parent b4cc473 commit d943c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcperciva/alg/sha256_sse2.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mm_bswap_epi32(__m128i a)
{

/* Swap bytes in each 16-bit word. */
a = _mm_or_si128(_mm_slli_epi16(a, 8), _mm_srli_epi16(a, 8));
a = _mm_or_si128(_mm_slli_epi16(a, 8), _mm_srli_epi16(a, 8));

/* Swap all 16-bit words. */
a = _mm_shufflelo_epi16(a, _MM_SHUFFLE(2, 3, 0, 1));
Expand Down

0 comments on commit d943c2a

Please sign in to comment.