summaryrefslogtreecommitdiff
path: root/arch/x86/math-emu/mul_Xsig.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/math-emu/mul_Xsig.S')
-rw-r--r--arch/x86/math-emu/mul_Xsig.S17
1 files changed, 10 insertions, 7 deletions
diff --git a/arch/x86/math-emu/mul_Xsig.S b/arch/x86/math-emu/mul_Xsig.S
index 717785a53eb4..54a031b66142 100644
--- a/arch/x86/math-emu/mul_Xsig.S
+++ b/arch/x86/math-emu/mul_Xsig.S
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: GPL-2.0 */
/*---------------------------------------------------------------------------+
| mul_Xsig.S |
| |
@@ -24,7 +25,7 @@
#include "fpu_emu.h"
.text
-ENTRY(mul32_Xsig)
+SYM_FUNC_START(mul32_Xsig)
pushl %ebp
movl %esp,%ebp
subl $16,%esp
@@ -61,10 +62,11 @@ ENTRY(mul32_Xsig)
popl %esi
leave
- ret
+ RET
+SYM_FUNC_END(mul32_Xsig)
-ENTRY(mul64_Xsig)
+SYM_FUNC_START(mul64_Xsig)
pushl %ebp
movl %esp,%ebp
subl $16,%esp
@@ -113,11 +115,12 @@ ENTRY(mul64_Xsig)
popl %esi
leave
- ret
+ RET
+SYM_FUNC_END(mul64_Xsig)
-ENTRY(mul_Xsig_Xsig)
+SYM_FUNC_START(mul_Xsig_Xsig)
pushl %ebp
movl %esp,%ebp
subl $16,%esp
@@ -172,5 +175,5 @@ ENTRY(mul_Xsig_Xsig)
popl %esi
leave
- ret
-
+ RET
+SYM_FUNC_END(mul_Xsig_Xsig)