Skip to content

Commit 6e490f8

Browse files
committed
Merge pull request #129 from hvr/patch-1
Don't `inline` popcount
2 parents bb4fc20 + 446ed4a commit 6e490f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cbits/popc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ static char popcount_table_8[256] = {
261261
};
262262
/* Table-driven popcount, with 8-bit tables */
263263
/* 6 ops plus 4 casts and 4 lookups, 0 long immediates, 4 stages */
264-
inline uint32_t
264+
uint32_t
265265
popcount(uint32_t x)
266266
{
267267
return popcount_table_8[(uint8_t)x] +

0 commit comments

Comments
 (0)