* don't use libc round/trunc/cos/... if FPC_HAS_TYPE_EXTENDED, because

the imported routines only support double precision

git-svn-id: trunk@9202 -
This commit is contained in:
Jonas Maebe 2007-11-11 19:10:34 +00:00
parent 70c0c2ddd9
commit b967d88b0c

View File

@ -14,7 +14,9 @@
**********************************************************************}
{ for 80x86, we can easily write the optimal inline code }
{$ifndef cpui386}
{ Furthermore, the routines below only go up to double }
{ precision and we need extended precision if supported }
{$ifndef FPC_HAS_TYPE_EXTENDED}
{$ifndef SOLARIS}
@ -162,5 +164,5 @@
end;
{$endif}
{$endif not i386}
{$endif not FPC_HAS_TYPE_EXTENDED}