1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-21 01:57:49 +00:00

Replace Addr68k related macros with NativeAligned inline functions

This commit is contained in:
Nick Briggs 2022-09-01 14:15:36 -07:00
parent 56b6cfaa19
commit 5143aa25b0

View File

@ -497,7 +497,7 @@ LispPTR reclaimstackp(LispPTR ptr) /* This is the entry function */
STACKP *stkp;
FX *fxp;
stkp = (STACKP *)NativeAligned4FromLAddr(ptr);
fxp = (FX *)Addr68k_from_StkOffset(stkp->edfxp);
fxp = (FX *)NativeAligned4FromStackOffset(stkp->edfxp);
decusecount68k(fxp); /* decrement the use-count for the frame it uses */
return (NIL); /* and let the normal reclaimer reclaim it */
}