Search One Last Position

dev
W. Felix Handte 2021-09-08 16:41:43 -04:00
parent 6ae44c0db8
commit 2cdfad538c
1 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ _start:
nextStep = ip + kStepIncr;
ip1 = ip + step;
if (ip1 >= ilimit) {
if (ip1 > ilimit) {
goto _cleanup;
}
@ -173,7 +173,7 @@ _start:
#if defined(__aarch64__)
PREFETCH_L1(ip+256);
#endif
} while (ip1 < ilimit);
} while (ip1 <= ilimit);
_cleanup:
/* save reps for next block */