* Change a call to BREAK into an AVER. Thanks to Tobias Rittweiler.
* Also fix topy in GET-TIME-OF-DAY dogstring.
#!-sb-fluid (declaim (inline get-time-of-day))
(defun get-time-of-day ()
- "Return the number of seconds and microseconds since the beginning og
+ "Return the number of seconds and microseconds since the beginning of
the UNIX epoch (January 1st 1970.)"
#!+darwin
(with-alien ((tv (struct timeval)))
#!-sb-fluid
(declaim (inline get-time-of-day))
(defun get-time-of-day ()
- "Return the number of seconds and microseconds since the beginning og the
+ "Return the number of seconds and microseconds since the beginning of the
UNIX epoch: January 1st 1970."
(with-alien ((system-time filetime))
(syscall (("GetSystemTimeAsFileTime" 4) void (* filetime))
(define-instruction fxch (segment source)
(:printer floating-point-fp ((op '(#b001 #b001))))
(:emitter
- (unless (and (tn-p source)
- (eq (sb-name (sc-sb (tn-sc source))) 'float-registers))
- (cl:break))
+ (aver (and (tn-p source)
+ (eq (sb-name (sc-sb (tn-sc source))) 'float-registers)))
(emit-byte segment #b11011001)
(emit-fp-op segment source #b001)))
;;; 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.30.6"
+"1.0.30.7"