File tree 2 files changed +12
-5
lines changed
2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ Bug fixes:
108
108
- PR#5734: improved Win32 implementation of Unix.gettimeofday
109
109
- PR#5735: %apply and %revapply not first class citizens
110
110
- PR#5738: first class module patterns not handled by ocamldep
111
+ - PR#5739: Printf.printf "%F" (-.nan) returns -nan
111
112
- PR#5747: 'unused open' warning not given when compiling with -annot
112
113
- PR#5752: missing dependencies at byte-code link with mlpack
113
114
- PR#5758: Compiler bug when matching on floats
Original file line number Diff line number Diff line change @@ -454,10 +454,13 @@ let format_float_lexeme =
454
454
valid_float_loop 0 in
455
455
456
456
(fun sfmt x ->
457
- let s = format_float sfmt x in
458
457
match classify_float x with
459
- | FP_normal | FP_subnormal | FP_zero -> make_valid_float_lexeme s
460
- | FP_nan | FP_infinite -> s)
458
+ | FP_normal | FP_subnormal | FP_zero ->
459
+ make_valid_float_lexeme (format_float sfmt x)
460
+ | FP_infinite ->
461
+ if x < 0.0 then " neg_infinity" else " infinity"
462
+ | FP_nan ->
463
+ " nan" )
461
464
;;
462
465
463
466
(* Decode a format string and act on it.
@@ -540,8 +543,11 @@ let scan_format fmt args n pos cont_s cont_a cont_t cont_f cont_m =
540
543
| 'F' as conv ->
541
544
let (x : float ) = get_arg spec n in
542
545
let s =
543
- if widths = [] then Pervasives. string_of_float x else
544
- format_float_lexeme (extract_format_float conv fmt pos i widths) x in
546
+ format_float_lexeme
547
+ (if widths = []
548
+ then " %.12g"
549
+ else extract_format_float conv fmt pos i widths)
550
+ x in
545
551
cont_s (next_index spec n) s (succ i)
546
552
| 'B' | 'b' ->
547
553
let (x : bool ) = get_arg spec n in
You can’t perform that action at this time.
0 commit comments