1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-26 11:52:25 +00:00

Remove dead stores. (#240)

This commit is contained in:
Bruce Mitchener
2021-01-20 12:23:26 +07:00
committed by GitHub
parent 0a057dec6b
commit 6f7ec059bc
13 changed files with 14 additions and 48 deletions

View File

@@ -1148,7 +1148,7 @@ void all_stack_dump(DLword start, DLword end, DLword silent)
{
STKH *stkptr;
DLword *start68k, *end68k, *orig68k;
DLword size, dummy;
DLword size;
int sdlines = 0;
extern IFPAGE *InterfacePage;
@@ -1165,7 +1165,6 @@ void all_stack_dump(DLword start, DLword end, DLword silent)
stkptr = (STKH *)start68k;
while (((DLword *)stkptr) < end68k) {
dummy = LADDR_from_68k(stkptr);
switch (STKHPTR(stkptr)->flags1) {
case STK_GUARD:
case STK_FSB: