Skip to content

Commit

Permalink
don't change this yet
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Nov 21, 2023
1 parent 46a2bba commit 1d9f928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arm64/arm_convert_latin1_to_utf8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ arm_convert_latin1_to_utf8(const char *latin1_input, size_t len,
vreinterpretq_u8_u16(vbslq_u16(one_byte_bytemask, in16, t4));
// 3. prepare bitmask for 8-bit lookup
#ifdef SIMDUTF_REGULAR_VISUAL_STUDIO
const uint16x8_t mask = simdutf_make_uint16x8_t(0x0001, 0x0004, 0x0010, 0x0040,
const uint16x8_t mask = make_uint16x8_t(0x0001, 0x0004, 0x0010, 0x0040,
0x0002, 0x0008, 0x0020, 0x0080);
#else
const uint16x8_t mask = {0x0001, 0x0004, 0x0010, 0x0040,
Expand Down

0 comments on commit 1d9f928

Please sign in to comment.