@@ -1770,7 +1770,12 @@ function fpc_frac_real(d : ValReal) : ValReal;compilerproc;
{ Nan or +/-Inf }
if (float64high(d) and $7ff00000)=$7ff00000 then
{ return NaN }
+{$ifdef VER3_2}
+ { fix bootstrapping with 3.2 on arm-linux }
+ result := (d-d)/0.0
+{$else VER3_2}
result := zero/zero
+{$endif VER3_2}
else
result := d - Int(d);
end;