From 4dc69673108d97250b79e28bcc6fe52225baf835 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 8 Nov 2010 19:21:13 +0000 Subject: [PATCH] [CRT] Fix assembly syntax svn path=/branches/cmake-bringup/; revision=49536 --- lib/sdk/crt/math/i386/atan2_asm.s | 2 +- lib/sdk/crt/math/i386/exp_asm.s | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sdk/crt/math/i386/atan2_asm.s b/lib/sdk/crt/math/i386/atan2_asm.s index 33d4329bbda..171ef21c78d 100644 --- a/lib/sdk/crt/math/i386/atan2_asm.s +++ b/lib/sdk/crt/math/i386/atan2_asm.s @@ -13,6 +13,6 @@ _atan2: fpatan pop ebp - retn + ret END diff --git a/lib/sdk/crt/math/i386/exp_asm.s b/lib/sdk/crt/math/i386/exp_asm.s index be2f33fc9e5..be62027e10a 100644 --- a/lib/sdk/crt/math/i386/exp_asm.s +++ b/lib/sdk/crt/math/i386/exp_asm.s @@ -24,6 +24,6 @@ _exp: fstp st(1) pop ebp - retn + ret END