cacheline improvement

This commit is contained in:
Kyryl Melekhin
2021-12-11 23:43:45 +00:00
parent 4482411da7
commit 703cf8a8a7

2
pike.c
View File

@@ -446,7 +446,7 @@ sparse[spc] = sparsesz++; \
#define fastrec(nn, list, listidx) \ #define fastrec(nn, list, listidx) \
nsub->ref++; \ nsub->ref++; \
spc = *npc; \ spc = *npc; \
if (spc < WBEG) { \ if ((unsigned int)spc < WBEG) { \
list[listidx].sub = nsub; \ list[listidx].sub = nsub; \
list[listidx++].pc = npc; \ list[listidx++].pc = npc; \
npc = pcs[si]; \ npc = pcs[si]; \