diff --git a/src/code/float.lisp b/src/code/float.lisp
index ee6e579523b79d05764b9dff6e5d66ff15833f9b..4616fedf9041625d6390aee441daf0a9392484b8 100644
--- a/src/code/float.lisp
+++ b/src/code/float.lisp
@@ -1051,6 +1051,8 @@
 		   (coerce x ',type))
 		  #+double-double
 		  ((double-double-float)
+		   ;; Convert the double-double to a double before
+		   ;; coercing to the appropriate type.
 		   (coerce (+ (double-double-hi x)
 			      (double-double-lo x))
 			   ',type))