fpc/tests/webtbs/tw8678a.pp
Jonas Maebe 21abdd2f4e + support for specifying the minimal precision for floating point
constants. The default is currently 32 bits/single, which corresponds
    to the old behaviour (constants which cannot be exactly represented
    in the default/chosen precision will also still be automatically
    upgraded to higher precision). Supported constructs:
   * Command line switch -CF<x>
   * Compiler directive {$MINFPCONSTPREC <x>}
  whereby in both cases <x> can be default, 32 or 64. 80 is not supported
  because there is no generic way to figure out whether the current target
  actually supports 80 bit precision floating point calculations while
  parsing the command line switches (pbestreal can still change in case of
  win64 or -Cfsse2)

git-svn-id: trunk@8349 -
2007-09-01 19:38:27 +00:00

18 lines
283 B
ObjectPascal

{ %cpu=powerpc,powerpc64,sparc,arm,x86_64 }
{ %opt=-CF64 }
var
l: longint;
s: single;
d: double;
begin
{$if not defined(cpux86_64) or defined(win64)} // or: using sse unit for math
l := maxlongint;
s:= l / 1.0;
d:= l / 1.0;
if (s = d) then
halt(1);
{$endif}
end.