X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fearly-c.lisp;h=978284fccaeaeeae89980b0fbde3b4c5ea127cff;hb=66cff1e1319861c080d563359afea284614b3a7f;hp=515701aab766b346534eaff8c8b925658da29cd7;hpb=c2431e2d0d0222a3cf20cfdfa48201bdcc65cd76;p=sbcl.git diff --git a/src/compiler/early-c.lisp b/src/compiler/early-c.lisp index 515701a..978284f 100644 --- a/src/compiler/early-c.lisp +++ b/src/compiler/early-c.lisp @@ -129,6 +129,9 @@ (defvar *big-compiler-lock* (sb!thread:make-mutex :name "big compiler lock")) +(declaim (type fixnum *compiler-sset-counter*)) +(defvar *compiler-sset-counter* 0) + ;;; unique ID for the next object created (to let us track object ;;; identity even across GC, useful for understanding weird compiler ;;; bugs where something is supposed to be unique but is instead @@ -190,7 +193,7 @@ convention (names like *FOO*) for special variables" symbol)) ((or symbol number string) x) (t - (format nil "#<~S>" (type-of x)))) + (list 'of-type (type-of x)))) "#<...>"))) ;; FIXME: It might be nice to put markers in the tree instead of ;; this #<...> business, so that they would evantually be printed