In the remaining place where the value of reginput is used, its value
should always be equal to locinput, so it can be eliminated there.
This is part of a campaign to eliminate the reginput variable.
/* clean up; in particular, free all slabs above current one */
LEAVE_SCOPE(oldsave);
- assert(!result || reginput - PL_bostr >= 0);
- return result ? reginput - PL_bostr : -1;
+ assert(!result || reginput == locinput);
+ assert(!result || locinput - PL_bostr >= 0);
+ return result ? locinput - PL_bostr : -1;
}
/*