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 a376f71 commit ce91becCopy full SHA for ce91bec
1 file changed
Python/pystrhex.c
@@ -67,8 +67,8 @@ _Py_hexlify_simd(const unsigned char *src, Py_UCS1 *dst, Py_ssize_t len)
67
const v16u8 mask_0f = v16u8_splat(0x0f);
68
const v16u8 ascii_0 = v16u8_splat('0');
69
const v16u8 offset = v16u8_splat('a' - '0' - 10); /* 0x27 */
70
- const v16s8 nine = v16s8_splat(9);
71
const v16u8 four = v16u8_splat(4);
+ const v16s8 nine = v16s8_splat(9);
72
73
Py_ssize_t i = 0;
74
0 commit comments