diff --git a/compiler/x86/macros.lisp b/compiler/x86/macros.lisp index c836bc614d7df3cb38aea47f732701a0a42f25e4..752cb053311ed714e45a5cc3509551a56853ff11 100644 --- a/compiler/x86/macros.lisp +++ b/compiler/x86/macros.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/macros.lisp,v 1.18 2003/08/05 14:04:51 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/macros.lisp,v 1.19 2003/08/05 19:46:53 gerd Exp $") ;;; ;;; ********************************************************************** ;;; @@ -261,7 +261,7 @@ appropriate, allocate from the stack." (cond ((and inline dynamic-extent - (policy inline (> speed safety))) + (policy inline (>= speed safety))) (stack-allocation alloc-tn size)) ((and *maybe-use-inline-allocation* (or (null inline) diff --git a/general-info/release-19a.txt b/general-info/release-19a.txt index 636dd8c3c91be36005406265396c5e9cd5528757..f393369514b064f2925443c64f8f21d0206e3580 100644 --- a/general-info/release-19a.txt +++ b/general-info/release-19a.txt @@ -169,10 +169,10 @@ New in this release: :newest to create versions. - LDB backtrace on x86. - On x86, the &REST arg list of a non-local function is allocated - on the stack if declared DYNAMIC-EXTENT, and speed is greater - than safety. Be warned that all bets are off if a - stack-allocated object or parts of it escape; CMUCL might - crash or format your hard disk. + on the stack if declared DYNAMIC-EXTENT, and speed is >= + safety. Be warned that all bets are off if a stack-allocated + object or parts of it escape; CMUCL might crash or format your + hard disk. * Numerous improvements to the PCL implementation of CLOS: - Gerd's PCL has been added, which fixes numerous bugs and ANSI/