From e50d75bc77d58824c817e2d6ca0af8ed80902233 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Thu, 12 May 2016 19:17:36 -0700 Subject: [PATCH] Fix typo in value. The deftransform for converting an (unsigned-byte 32) to a double-float was using the wrong type of float constant. It should have been a double instead of single. This fix allows sparc to cross-compile itself now. --- src/compiler/sparc/float.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/sparc/float.lisp b/src/compiler/sparc/float.lisp index 74f279dd3..dcdbda7d5 100644 --- a/src/compiler/sparc/float.lisp +++ b/src/compiler/sparc/float.lisp @@ -1061,7 +1061,7 @@ ;; constraint is that the pieces must be small enough to fit in the ;; desired float format without rounding. (frob %single-float %%single-float 12 1f0) - (frob %double-float %%double-float 12 1f0)) + (frob %double-float %%double-float 12 1d0)) (macrolet ((frob (name translate inst to-sc to-type) -- GitLab