소스 검색

* fix cotan, resolves #9944

git-svn-id: trunk@8819 -
florian 18 년 전
부모
커밋
3752cfb649
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      rtl/i386/mathu.inc

+ 1 - 1
rtl/i386/mathu.inc

@@ -49,7 +49,7 @@ function cotan(x : float) : float;assembler;
   asm
     fldt X
     fptan
-    fdivrp
+    fdivp
     fwait
   end;