mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-18 21:37:21 +00:00
Remove dead stores. (#240)
This commit is contained in:
@@ -471,12 +471,11 @@ ConsCell *find_close_prior_cell(struct conspage *page, LispPTR oldcell) {
|
||||
unsigned oldoffset = oldcell & 0xFF;
|
||||
unsigned offset = page->next_cell;
|
||||
unsigned prior = 0;
|
||||
unsigned noffset, poffset;
|
||||
unsigned noffset;
|
||||
ConsCell *cell;
|
||||
|
||||
while (offset) {
|
||||
if ((offset < oldoffset) && (offset >= (oldoffset - 14))) {
|
||||
poffset = offset;
|
||||
noffset = FREECONS(page, offset)->next_free;
|
||||
while ((noffset > offset) && (noffset < oldoffset)) {
|
||||
prior = offset;
|
||||
|
||||
Reference in New Issue
Block a user