We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d027390 commit e720877Copy full SHA for e720877
ext/bcmath/libbcmath/src/convert.c
@@ -24,7 +24,7 @@ char *bc_copy_and_toggle_bcd(char *restrict dest, const char *source, const char
24
const size_t bulk_shift = SWAR_REPEAT('0');
25
26
#ifdef HAVE_BC_SIMD_128
27
- /* SIMD SSE2 of NEON bulk shift + copy */
+ /* SIMD SSE2 or NEON bulk shift + copy */
28
bc_simd_128_t shift_vector = bc_simd_set_8x16('0');
29
while (source + sizeof(bc_simd_128_t) <= source_end) {
30
bc_simd_128_t bytes = bc_simd_load_8x16((const bc_simd_128_t *) source);
0 commit comments