From e3a336fca8c785f3f4992a8fd23f573a688c6e37 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Sat, 9 Apr 2016 09:55:03 +0200 Subject: */TargetPrinter.ml: wrong comment attached to Init_float32 constants For informative purposes, the FP value of Init_float* constants is printed as a comment in the generated asm file. However, for Init_float32, it was wrongly printed as a double-precision FP instead of a single-precision FP. --- ia32/TargetPrinter.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ia32/TargetPrinter.ml') diff --git a/ia32/TargetPrinter.ml b/ia32/TargetPrinter.ml index f2358487..979ac800 100644 --- a/ia32/TargetPrinter.ml +++ b/ia32/TargetPrinter.ml @@ -667,7 +667,7 @@ module Target(System: SYSTEM):TARGET = | Init_float32 n -> fprintf oc " .long %ld %s %.18g\n" (camlint_of_coqint (Floats.Float32.to_bits n)) - comment (camlfloat_of_coqfloat n) + comment (camlfloat_of_coqfloat32 n) | Init_float64 n -> fprintf oc " .quad %Ld %s %.18g\n" (camlint64_of_coqint (Floats.Float.to_bits n)) -- cgit