Raymond Toy pushed to branch rtoy-28-fix-recursive-fcn-defn at cmucl / cmucl
Commits:
- 
6c86016d
by Raymond Toy at 2016-09-03T10:59:29-07:00
 
1 changed file:
Changes:
| ... | ... | @@ -1051,6 +1051,8 @@ | 
| 1051 | 1051 | 
 		   (coerce x ',type))
 | 
| 1052 | 1052 | 
 		  #+double-double
 | 
| 1053 | 1053 | 
 		  ((double-double-float)
 | 
| 1054 | 
 		   ;; Convert the double-double to a double before
 | 
|
| 1055 | 
 		   ;; coercing to the appropriate type.
 | 
|
| 1054 | 1056 | 
 		   (coerce (+ (double-double-hi x)
 | 
| 1055 | 1057 | 
 			      (double-double-lo x))
 | 
| 1056 | 1058 | 
 			   ',type))
 |