* Make botched calls of make-ea-for-symbol-value amd
make-ea-for-symbol-tls-index cause the build to fail early and
obviously (this would have saved me two hours of debugging).
`(inst mov ,reg (+ nil-value (static-symbol-offset ,symbol))))
(defmacro make-ea-for-symbol-value (symbol)
+ (declare (type symbol symbol))
`(make-ea :dword
:disp (+ nil-value
(static-symbol-offset ',symbol)
#!+sb-thread
(defmacro make-ea-for-symbol-tls-index (symbol)
+ (declare (type symbol symbol))
`(make-ea :dword
:disp (+ nil-value
(static-symbol-offset ',symbol)
;;; 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.4.70"
+"1.0.4.71"