From 3752cfb64984d1f206173c902e9426f49b92cbcd Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 15 Oct 2007 17:25:52 +0000 Subject: [PATCH] * fix cotan, resolves #9944 git-svn-id: trunk@8819 - --- rtl/i386/mathu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/i386/mathu.inc b/rtl/i386/mathu.inc index a85db115d5..4c2227078a 100644 --- a/rtl/i386/mathu.inc +++ b/rtl/i386/mathu.inc @@ -49,7 +49,7 @@ function cotan(x : float) : float;assembler; asm fldt X fptan - fdivrp + fdivp fwait end;