mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
diff: defeat gcc's optimization
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
d4a7728dc3
commit
032bf65533
@ -435,7 +435,10 @@ static int *create_J(FILE_and_pos_t ft[2], int nlen[2], off_t *ix[2])
|
|||||||
tok = read_token(&ft[i], tok);
|
tok = read_token(&ft[i], tok);
|
||||||
if (!(tok & TOK_EMPTY)) {
|
if (!(tok & TOK_EMPTY)) {
|
||||||
/* Hash algorithm taken from Robert Sedgewick, Algorithms in C, 3d ed., p 578. */
|
/* Hash algorithm taken from Robert Sedgewick, Algorithms in C, 3d ed., p 578. */
|
||||||
hash = hash * 128 - hash + TOK2CHAR(tok);
|
/*hash = hash * 128 - hash + TOK2CHAR(tok);
|
||||||
|
* gcc insists on optimizing above to "hash * 127 + ...", thus... */
|
||||||
|
unsigned o = hash - TOK2CHAR(tok);
|
||||||
|
hash = hash * 128 - o; /* we want SPEED here */
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (nlen[i]++ == sz) {
|
if (nlen[i]++ == sz) {
|
||||||
|
Loading…
Reference in New Issue
Block a user