Skip to content

Commit d70b528

Browse files
committed
Fixed typos in comments.
1 parent 3ea24c8 commit d70b528

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/dump_avx2.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ BOOST_FORCEINLINE void dump_data_avx2(const void* data, std::size_t size, std::b
227227

228228
store_characters_x3(mm_output1, mm_output2, mm_output3, buf);
229229

230-
_mm256_zeroall(); // need to zero all ymm registers to avoid register spills/restores the compler generates around the function call
230+
_mm256_zeroall(); // need to zero all ymm registers to avoid register spills/restores the compiler generates around the function call
231231
strm.write(buf_begin, prealign_size * 3u - 1u);
232232

233233
buf_begin = buf;
@@ -251,7 +251,7 @@ BOOST_FORCEINLINE void dump_data_avx2(const void* data, std::size_t size, std::b
251251
store_characters_x3(mm_output1, mm_output2, mm_output3, b);
252252
}
253253

254-
_mm256_zeroall(); // need to zero all ymm registers to avoid register spills/restores the compler generates around the function call
254+
_mm256_zeroall(); // need to zero all ymm registers to avoid register spills/restores the compiler generates around the function call
255255
strm.write(buf_begin, buf_end - buf_begin);
256256
buf_begin = buf;
257257
}
@@ -276,7 +276,7 @@ BOOST_FORCEINLINE void dump_data_avx2(const void* data, std::size_t size, std::b
276276
tail_size -= 16u;
277277
}
278278

279-
_mm256_zeroall(); // need to zero all ymm registers to avoid register spills/restores the compler generates around the function call
279+
_mm256_zeroall(); // need to zero all ymm registers to avoid register spills/restores the compiler generates around the function call
280280
for (unsigned int i = 0; i < tail_size; ++i, ++p, b += 3u)
281281
{
282282
uint32_t n = *p;

0 commit comments

Comments
 (0)