mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-25 16:30:00 +00:00
Remove dead stores. (#240)
This commit is contained in:
@@ -271,10 +271,7 @@ LispPTR make_value_list(int argcount, LispPTR *argarray) {
|
||||
|
||||
void simulate_unbind(FX2 *frame, int unbind_count, FX2 *returner) {
|
||||
int unbind;
|
||||
LispPTR *stackptr;
|
||||
DLword *nextblock;
|
||||
stackptr = (LispPTR *)(Stackspace + frame->nextblock);
|
||||
nextblock = (DLword *)stackptr;
|
||||
LispPTR *stackptr = (LispPTR *)(Stackspace + frame->nextblock);
|
||||
for (unbind = 0; unbind < unbind_count; unbind++) {
|
||||
register int value;
|
||||
register LispPTR *lastpvar;
|
||||
|
||||
Reference in New Issue
Block a user