Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv17480
Modified Files:
version.lisp-expr
Log Message:
1.0.17.3: unify CONSTANT nodes for DEFCONSTANT and literal constants
* Prevents at least some cases which used to introduce duplicate
constants into code objects.
* The above causes all CONSTANTS being :DEFINED and anonymous, which
is generally speaking not a problem, but causes trouble for XREF,
which wants to generate REFERENCES information for constants as
well. ...so, we add a %SOURCE-NAME slot to REF, allowing us to have
references to a shared constant under multiple names.
* Test-case.
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.3962
retrieving revision 1.3963
diff -u -d -r1.3962 -r1.3963
--- version.lisp-expr 28 May 2008 16:00:35 -0000 1.3962
+++ version.lisp-expr 28 May 2008 16:23:12 -0000 1.3963
@@ -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.17.2"
+"1.0.17.3"
|