File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ ada_really_inline bool has_tabs_or_newline(
5959 vceqq_u8 (word, mask3));
6060 }
6161 if (i < user_input.size ()) {
62- uint8_t buffer[16 ];
62+ uint8_t buffer[16 ]{} ;
6363 memcpy (buffer, user_input.data () + i, user_input.size () - i);
6464 uint8x16_t word = vld1q_u8 ((const uint8_t *)user_input.data () + i);
6565 running = vorrq_u8 (vorrq_u8 (running, vorrq_u8 (vceqq_u8 (word, mask1),
@@ -84,7 +84,7 @@ ada_really_inline bool has_tabs_or_newline(
8484 _mm_cmpeq_epi8 (word, mask3));
8585 }
8686 if (i < user_input.size ()) {
87- uint8_t buffer[16 ];
87+ uint8_t buffer[16 ]{} ;
8888 memcpy (buffer, user_input.data () + i, user_input.size () - i);
8989 __m128i word = _mm_loadu_si128 ((const __m128i*)buffer);
9090 running = _mm_or_si128 (
You can’t perform that action at this time.
0 commit comments