Skip to content

Commit ce91bec

Browse files
committed
Define four before nine
1 parent a376f71 commit ce91bec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/pystrhex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ _Py_hexlify_simd(const unsigned char *src, Py_UCS1 *dst, Py_ssize_t len)
6767
const v16u8 mask_0f = v16u8_splat(0x0f);
6868
const v16u8 ascii_0 = v16u8_splat('0');
6969
const v16u8 offset = v16u8_splat('a' - '0' - 10); /* 0x27 */
70-
const v16s8 nine = v16s8_splat(9);
7170
const v16u8 four = v16u8_splat(4);
71+
const v16s8 nine = v16s8_splat(9);
7272

7373
Py_ssize_t i = 0;
7474

0 commit comments

Comments
 (0)