Force compilation times to be written out in decimal notation.
authorChris Hanson <org/chris-hanson/cph>
Sat, 2 Dec 1989 05:03:24 +0000 (05:03 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 2 Dec 1989 05:03:24 +0000 (05:03 +0000)
v7/src/compiler/base/toplev.scm

index de4d6cfcd673f615e6136f47c29c263619d4fc6c..6c399266ae3014a5b14fbabd2f966322699dd5c1 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/toplev.scm,v 4.23 1989/11/02 08:08:04 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/toplev.scm,v 4.24 1989/12/02 05:03:24 cph Exp $
 
 Copyright (c) 1988, 1989 Massachusetts Institute of Technology
 
@@ -525,9 +525,9 @@ MIT in each case. |#
   (write-string *output-prefix*)
   (write-string prefix)
   (write-string ": ")
-  (write (/ process-time 1000))
+  (write (/ (exact->inexact process-time) 1000))
   (write-string " (process time); ")
-  (write (/ real-time 1000))
+  (write (/ (exact->inexact real-time) 1000))
   (write-string " (real time)"))
 
 (define-macro (last-reference name)