Author: tkreuzer
Date: Mon Nov 8 19:21:13 2010
New Revision: 49536
URL:
http://svn.reactos.org/svn/reactos?rev=49536&view=rev
Log:
[CRT]
Fix assembly syntax
Modified:
branches/cmake-bringup/lib/sdk/crt/math/i386/atan2_asm.s
branches/cmake-bringup/lib/sdk/crt/math/i386/exp_asm.s
Modified: branches/cmake-bringup/lib/sdk/crt/math/i386/atan2_asm.s
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/sdk/crt/math/…
==============================================================================
--- branches/cmake-bringup/lib/sdk/crt/math/i386/atan2_asm.s [iso-8859-1] (original)
+++ branches/cmake-bringup/lib/sdk/crt/math/i386/atan2_asm.s [iso-8859-1] Mon Nov 8
19:21:13 2010
@@ -13,6 +13,6 @@
fpatan
pop ebp
- retn
+ ret
END
Modified: branches/cmake-bringup/lib/sdk/crt/math/i386/exp_asm.s
URL:
http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/sdk/crt/math/…
==============================================================================
--- branches/cmake-bringup/lib/sdk/crt/math/i386/exp_asm.s [iso-8859-1] (original)
+++ branches/cmake-bringup/lib/sdk/crt/math/i386/exp_asm.s [iso-8859-1] Mon Nov 8
19:21:13 2010
@@ -24,6 +24,6 @@
fstp st(1)
pop ebp
- retn
+ ret
END