From a523d81b87687963721bb9f5083a957b5258217f Mon Sep 17 00:00:00 2001
From: florian <florian@freepascal.org>
Date: Sun, 4 Nov 2012 18:02:20 +0000
Subject: [PATCH] * fix sincos also for x86-64-linux

git-svn-id: trunk@22926 -
---
 rtl/x86_64/mathu.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rtl/x86_64/mathu.inc b/rtl/x86_64/mathu.inc
index 13b970b2d1..6113cef4a2 100644
--- a/rtl/x86_64/mathu.inc
+++ b/rtl/x86_64/mathu.inc
@@ -62,7 +62,7 @@ procedure sincos(theta : single;out sinus,cosinus : single);assembler;
   var
     t : single;
   asm
-    movsd dword ptr t,xmm0
+    movss dword ptr t,xmm0
     fld dword ptr t
     fsincos
     fstp dword ptr [cosinus]