diff --git a/code/hash.lisp b/code/hash.lisp
index 486e92c855c8ef9f522e2d420315c35d3599b705..233b3c122cc26ab3934bea0c05a342c4f9fe275e 100644
--- a/code/hash.lisp
+++ b/code/hash.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.21 1992/11/04 17:51:03 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.21.1.1 1993/02/10 22:42:03 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -511,8 +511,11 @@
     (list (sxhash-list s-expr depth))
     (fixnum
      (ldb sxhash-bits-byte s-expr))
-    (structure
-     (internal-sxhash (type-of s-expr) depth))
+    (instance
+     (if (typep s-expr 'structure-object)
+	 (internal-sxhash (class-name (layout-class (%instance-layout s-expr)))
+			  depth)
+	 42))
     ;; Other-pointer types.
     (simple-string (sxhash-simple-string s-expr))
     (symbol (sxhash-simple-string (symbol-name s-expr)))