diff options
author | Paul Eggert <eggert@twinsun.com> | 1995-12-06 10:17:57 +0000 |
---|---|---|
committer | Paul Eggert <eggert@twinsun.com> | 1995-12-06 10:17:57 +0000 |
commit | 0ed79a99ff87adb78d52b32bba0585738585409b (patch) | |
tree | e96695d9266d3fa86f4474818f9680e634f4afbb | |
parent | cb1fc4cc02dcd2a3737e5e2a55e17464a107c2e6 (diff) | |
download | emacs-0ed79a99ff87adb78d52b32bba0585738585409b.tar.gz |
Fix misspelled comment.
-rw-r--r-- | src/alloca.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloca.s b/src/alloca.s index 0bcc950f85e..4cae6ab3bfb 100644 --- a/src/alloca.s +++ b/src/alloca.s @@ -181,7 +181,7 @@ _alloca: move.l sp,d1 ; get current SP value sub.l d0,d1 ; adjust to reflect required size... sub.l #MAXREG*4,d1 ; ...and space needed for registers - and.l #-4,d1 ; backup to longword boundry + and.l #-4,d1 ; backup to longword boundary move.l sp,a0 ; save old SP value for register copy move.l d1,sp ; set the new SP value tst.b -4096(sp) ; grab an extra page (to cover caller) |