Skip to content

Commit ddd1a28

Browse files
committed
Apply clang patch
1 parent 519d89d commit ddd1a28

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/westmere/sse_convert_utf32_to_utf8.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ sse_convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_output) {
133133
// t0 = [000a|aaaa|bbbb|bb00]
134134
const __m128i t0 = _mm_slli_epi16(in_16, 2); // shift packed vector by two
135135
// t1 = [000a|aaaa|0000|0000]
136-
const __m128i t1 =
137-
_mm_and_si128(t0, v_1f00); // potential first utf8 byte
136+
const __m128i t1 = _mm_and_si128(t0, v_1f00); // potential first utf8 byte
138137
// t2 = [0000|0000|00bb|bbbb]
139138
const __m128i t2 =
140139
_mm_and_si128(in_16, v_003f); // potential second utf8 byte

0 commit comments

Comments
 (0)