hc
2024-05-10 cde9070d9970eef1f7ec2360586c802a16230ad8
kernel/arch/x86/math-emu/shr_Xsig.S
....@@ -22,7 +22,7 @@
2222 #include "fpu_emu.h"
2323
2424 .text
25
-ENTRY(shr_Xsig)
25
+SYM_FUNC_START(shr_Xsig)
2626 push %ebp
2727 movl %esp,%ebp
2828 pushl %esi
....@@ -45,7 +45,7 @@
4545 popl %ebx
4646 popl %esi
4747 leave
48
- ret
48
+ RET
4949
5050 L_more_than_31:
5151 cmpl $64,%ecx
....@@ -61,7 +61,7 @@
6161 movl $0,8(%esi)
6262 popl %esi
6363 leave
64
- ret
64
+ RET
6565
6666 L_more_than_63:
6767 cmpl $96,%ecx
....@@ -76,7 +76,7 @@
7676 movl %edx,8(%esi)
7777 popl %esi
7878 leave
79
- ret
79
+ RET
8080
8181 L_more_than_95:
8282 xorl %eax,%eax
....@@ -85,5 +85,5 @@
8585 movl %eax,8(%esi)
8686 popl %esi
8787 leave
88
- ret
89
-ENDPROC(shr_Xsig)
88
+ RET
89
+SYM_FUNC_END(shr_Xsig)