Tweak Step

This commit is contained in:
W. Felix Handte 2021-08-20 17:06:41 -04:00
parent 24fcccd05c
commit 64054dec44

View File

@ -340,7 +340,6 @@ _start: /* Requires: ip0 */
ip0 = ip1; ip0 = ip1;
ip1 = ip2; ip1 = ip2;
ip2 = ip3; ip2 = ip3;
ip3 += step;
/* write back hash table entry */ /* write back hash table entry */
current0 = ip0 - base; current0 = ip0 - base;
@ -377,8 +376,8 @@ _start: /* Requires: ip0 */
/* advance to next positions */ /* advance to next positions */
ip0 = ip1; ip0 = ip1;
ip1 = ip2; ip1 = ip2;
ip2 = ip3; ip2 = ip2 + step;
ip3 += step; ip3 = ip2 + step;
} while (ip3 < ilimit); } while (ip3 < ilimit);
_cleanup: _cleanup: