Skip to content

Commit 4b50c73

Browse files
committed
reword L1 cache line comment
1 parent 4b1245b commit 4b50c73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/binascii.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ get_binascii_state(PyObject *module)
7676
}
7777

7878

79-
/* Align to 64 bytes to ensure table fits in a single L1 cache line */
79+
/* Align to 64 bytes for L1 cache line friendliness */
8080
static const unsigned char table_a2b_base64[] Py_ALIGNED(64) = {
8181
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
8282
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
@@ -108,7 +108,7 @@ static const unsigned char table_a2b_base64[] Py_ALIGNED(64) = {
108108
* Process complete groups without loop-carried dependencies.
109109
*/
110110

111-
/* Align to 64 bytes to ensure table fits in a single L1 cache line */
111+
/* Align to 64 bytes for L1 cache line friendliness */
112112
static const unsigned char table_b2a_base64[] Py_ALIGNED(64) =
113113
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
114114

0 commit comments

Comments
 (0)