diff --git a/compiler/float-tran.lisp b/compiler/float-tran.lisp
index d63f30f2ef243ba30679ef7ddd680e101426b866..a45a75892bd29616f26f7994f43a88ffdce29a42 100644
--- a/compiler/float-tran.lisp
+++ b/compiler/float-tran.lisp
@@ -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/float-tran.lisp,v 1.89 2003/07/02 21:45:33 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/float-tran.lisp,v 1.90 2003/07/03 17:13:30 toy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -126,8 +126,8 @@
 (macrolet ((frob (ftype func)
 	     `(deftransform %unary-ftruncate ((x) (,ftype))
 		(let* ((x-type (continuation-type x))
-		       (lo (numeric-type-low x-type))
-		       (hi (numeric-type-high x-type))
+		       (lo (bound-value (numeric-type-low x-type)))
+		       (hi (bound-value (numeric-type-high x-type)))
 		       (limit-lo (- (ash 1 #-sparc-v9 31 #+sparc-v9 63)))
 		       (limit-hi (ash 1 #-sparc-v9 31 #+sparc-v9 63)))
 		  (if (and (numberp lo) (numberp hi)