We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 124396a commit 1826161Copy full SHA for 1826161
ext/json/json_encoder.c
@@ -498,12 +498,6 @@ zend_result php_json_escape_string(
498
const __m128i input = _mm_loadu_si128((__m128i *) (s + pos));
499
const __m128i input_range = _mm_cmplt_epi8(input, _mm_set1_epi8(32));
500
501
- //const uint8_t *raw = (const uint8_t *) &input_range;
502
- //for (int i =0;i<16;i++) {
503
- // printf("%x ", raw[i]);
504
- //}
505
- //printf("\n");
506
-
507
int max_shift = 16;
508
509
int input_range_mask = _mm_movemask_epi8(input_range);
0 commit comments