Revert "vm: fix typo from c++ comment patch causing compile failure."

This reverts commit 4e48e836b9.
char-rename
Alexander Iljin 2016-08-05 15:44:29 +03:00 committed by Björn Lindqvist
parent 9decb6a91e
commit 897d0d6eeb
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ inline cell popcount(cell x) {
x = x - ((x >> 1) & k1); /* put count of each 2 bits into those 2 bits */
x = (x & k2) + ((x >> 2) & k2); /* put count of each 4 bits into those 4 bits */
x = (x + (x >> 4)) & k4; /* put count of each 8 bits into those 8 bits */
x = (x * kf) >> ks; /* returns 8 most significant bits of x + (x<<8) +
x = (x * kf) >> ks; /* returns 8 most significant bits of x + (x<<8) + */
(x<<16) + (x<<24) + ... */
return x;