forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/arch/x86/math-emu/reg_norm.S
....@@ -22,7 +22,7 @@
2222
2323
2424 .text
25
-ENTRY(FPU_normalize)
25
+SYM_FUNC_START(FPU_normalize)
2626 pushl %ebp
2727 movl %esp,%ebp
2828 pushl %ebx
....@@ -72,7 +72,7 @@
7272 L_exit:
7373 popl %ebx
7474 leave
75
- ret
75
+ RET
7676
7777
7878 L_zero:
....@@ -95,12 +95,12 @@
9595 call arith_overflow
9696 pop %ebx
9797 jmp L_exit
98
-ENDPROC(FPU_normalize)
98
+SYM_FUNC_END(FPU_normalize)
9999
100100
101101
102102 /* Normalise without reporting underflow or overflow */
103
-ENTRY(FPU_normalize_nuo)
103
+SYM_FUNC_START(FPU_normalize_nuo)
104104 pushl %ebp
105105 movl %esp,%ebp
106106 pushl %ebx
....@@ -138,7 +138,7 @@
138138
139139 popl %ebx
140140 leave
141
- ret
141
+ RET
142142
143143 L_exit_nuo_zero:
144144 movl TAG_Zero,%eax
....@@ -146,5 +146,5 @@
146146
147147 popl %ebx
148148 leave
149
- ret
150
-ENDPROC(FPU_normalize_nuo)
149
+ RET
150
+SYM_FUNC_END(FPU_normalize_nuo)