Search One Last Position
This commit is contained in:
parent
6ae44c0db8
commit
2cdfad538c
@ -111,7 +111,7 @@ _start:
|
|||||||
nextStep = ip + kStepIncr;
|
nextStep = ip + kStepIncr;
|
||||||
ip1 = ip + step;
|
ip1 = ip + step;
|
||||||
|
|
||||||
if (ip1 >= ilimit) {
|
if (ip1 > ilimit) {
|
||||||
goto _cleanup;
|
goto _cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -173,7 +173,7 @@ _start:
|
|||||||
#if defined(__aarch64__)
|
#if defined(__aarch64__)
|
||||||
PREFETCH_L1(ip+256);
|
PREFETCH_L1(ip+256);
|
||||||
#endif
|
#endif
|
||||||
} while (ip1 < ilimit);
|
} while (ip1 <= ilimit);
|
||||||
|
|
||||||
_cleanup:
|
_cleanup:
|
||||||
/* save reps for next block */
|
/* save reps for next block */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user