diff options
Diffstat (limited to 'arch/x86/math-emu/round_Xsig.S')
| -rw-r--r-- | arch/x86/math-emu/round_Xsig.S | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/arch/x86/math-emu/round_Xsig.S b/arch/x86/math-emu/round_Xsig.S index bbe0e87718e4..126c40473bad 100644 --- a/arch/x86/math-emu/round_Xsig.S +++ b/arch/x86/math-emu/round_Xsig.S @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0 */ /*---------------------------------------------------------------------------+ | round_Xsig.S | | | @@ -22,7 +23,7 @@ .text -ENTRY(round_Xsig) +SYM_FUNC_START(round_Xsig) pushl %ebp movl %esp,%ebp pushl %ebx /* Reserve some space */ @@ -77,12 +78,12 @@ L_exit: popl %esi popl %ebx leave - ret + RET +SYM_FUNC_END(round_Xsig) - -ENTRY(norm_Xsig) +SYM_FUNC_START(norm_Xsig) pushl %ebp movl %esp,%ebp pushl %ebx /* Reserve some space */ @@ -137,5 +138,5 @@ L_n_exit: popl %esi popl %ebx leave - ret - + RET +SYM_FUNC_END(norm_Xsig) |
