0.8.5.47:
authorAlexey Dejneka <adejneka@comail.ru>
Wed, 19 Nov 2003 08:41:33 +0000 (08:41 +0000)
committerAlexey Dejneka <adejneka@comail.ru>
Wed, 19 Nov 2003 08:41:33 +0000 (08:41 +0000)
        * Describe PFD bug MISC.186.

BUGS
version.lisp-expr

diff --git a/BUGS b/BUGS
index 0101f27..f47e869 100644 (file)
--- a/BUGS
+++ b/BUGS
@@ -1213,3 +1213,18 @@ WORKAROUND:
   This program violates "unknown values LVAR stack discipline": if INT
   returns, values returned by (EXT) must be removed from under that of
   (INT).
+
+299: (aka PFD MISC.186)
+    * (defun foo ()
+        (declare (optimize (debug 1)))
+        (multiple-value-call #'list
+          (if (eval t) (eval '(values :a :b :c)) nil) ; (*)
+          (catch 'foo (throw 'foo (values :x :y)))))
+    FOO
+    * (foo)
+    (:X :Y)
+
+  Operator THROW is represented with a call of a not returning funny
+  function %THROW, unknown values stack after the call is empty, so
+  the unknown values LVAR (*) is considered to be dead after the call
+  and, thus, before it and is popped by the stack analysis.
index 94e8515..8ac8c08 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".)
-"0.8.5.46"
+"0.8.5.47"