Skip to content
Snippets Groups Projects
Commit 755a5bc6 authored by rtoy's avatar rtoy
Browse files

Enable the sxhash transform for x86 too, to get lazy symbol hash

computation.
parent 2a9b9d16
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-tran.lisp,v 1.52 2004/05/17 17:28:35 rtoy Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-tran.lisp,v 1.53 2004/05/18 02:30:13 rtoy Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -424,11 +424,11 @@
(deftransform sxhash ((s-expr) (simple-string))
'(%sxhash-simple-string s-expr))
#-sparc
#-(or sparc x86)
(deftransform sxhash ((s-expr) (symbol))
'(%sxhash-simple-string (symbol-name s-expr)))
#+sparc
#+(or sparc x86)
(deftransform sxhash ((s-expr) (symbol))
;; Pick off the constant case first. (Important!)
(if (constant-continuation-p s-expr)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment