Skip to content

Commit

Permalink
Update cbits/cbits.c
Browse files Browse the repository at this point in the history
Co-authored-by: Kubo Kováč <[email protected]>
  • Loading branch information
ethercrow and kuk0 authored Apr 20, 2021
1 parent 0ad0820 commit d94d2ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cbits/cbits.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ _hs_text_decode_utf8_int(uint16_t *const dest, size_t *destoff,
const __m128i eight_ascii_chars = _mm_cvtsi64_si128(hopefully_eight_ascii_chars);
/* Interleave with zeros */
const __m128i eight_utf16_chars = _mm_unpacklo_epi8(eight_ascii_chars, zeros);
/* Store the resulting 8 bytes into destination */
/* Store the resulting 16 bytes into destination */
_mm_storeu_si128((__m128i *)d, eight_utf16_chars);
d += 8;
}
Expand Down

0 comments on commit d94d2ef

Please sign in to comment.