1.0.2.25: Better MUFFLE-CONDITIONS handling for inlined functions
authorJuho Snellman <jsnell@iki.fi>
Tue, 13 Feb 2007 07:40:38 +0000 (07:40 +0000)
committerJuho Snellman <jsnell@iki.fi>
Tue, 13 Feb 2007 07:40:38 +0000 (07:40 +0000)
* Inherit MUFFLE-CONDITIONS from the call-site
          lexenv. Otherwise it's basically impossible to selectively
          muffle "alien runtime allocation" notes, at least for
          SB-GROVELed alien functions.

src/compiler/ir1tran-lambda.lisp
version.lisp-expr

index 2486661..f424f51 100644 (file)
                                      `(,(car x) .
                                        (macro . ,(coerce (cdr x) 'function))))
                                    macros)
+                     ;; Inherit MUFFLE-CONDITIONS from the call-site lexenv
+                     ;; rather than the definition-site lexenv, since it seems
+                     ;; like a much more common case.
+                     :handled-conditions (lexenv-handled-conditions *lexenv*)
                      :policy (lexenv-policy *lexenv*)))
           (*allow-instrumenting* (and (not system-lambda) *allow-instrumenting*)))
       (ir1-convert-lambda `(lambda ,@body)
index 0331e9f..6ad040e 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.2.24"
+"1.0.2.25"