Skip to content

Commit

Permalink
sh: Add exports for __udivsi3/__sdivsi3 and the _i4 versions.
Browse files Browse the repository at this point in the history
Needed by older compilers.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Paul Mundt committed Dec 22, 2008
1 parent 16b529d commit 9ef1002
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arch/sh/kernel/sh_ksyms_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ EXPORT_SYMBOL(__const_udelay);
#define DECLARE_EXPORT(name) \
extern void name(void);EXPORT_SYMBOL(name)

DECLARE_EXPORT(__udivsi3);
DECLARE_EXPORT(__sdivsi3);
DECLARE_EXPORT(__lshrsi3);
DECLARE_EXPORT(__ashrsi3);
DECLARE_EXPORT(__ashlsi3);
Expand Down Expand Up @@ -92,6 +94,8 @@ DECLARE_EXPORT(__movstr_i4_even);
DECLARE_EXPORT(__movstr_i4_odd);
DECLARE_EXPORT(__movstrSI12_i4);
DECLARE_EXPORT(__udiv_qrnnd_16);
DECLARE_EXPORT(__sdivsi3_i4);
DECLARE_EXPORT(__udivsi3_i4);
DECLARE_EXPORT(__sdivsi3_i4i);
DECLARE_EXPORT(__udivsi3_i4i);

Expand Down
4 changes: 4 additions & 0 deletions arch/sh/lib/udivsi3-Os.S
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ Boston, MA 02110-1301, USA. */
of two more cycles. */
.balign 4
.global __udivsi3_i4i
.global __udivsi3_i4
.global __udivsi3
.set __udivsi3_i4, __udivsi3_i4i
.set __udivsi3, __udivsi3_i4i
.type __udivsi3_i4i, @function
.type __sdivsi3_i4i, @function
Expand Down Expand Up @@ -105,7 +107,9 @@ sdiv_large_divisor:
rotcl r0

.global __sdivsi3_i4i
.global __sdivsi3_i4
.global __sdivsi3
.set __sdivsi3_i4, __sdivsi3_i4i
.set __sdivsi3, __sdivsi3_i4i
__sdivsi3_i4i:
mov.l r4,@-r15
Expand Down
4 changes: 4 additions & 0 deletions arch/sh/lib/udivsi3.S
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ Boston, MA 02110-1301, USA. */

.balign 4
.global __udivsi3_i4i
.global __udivsi3_i4
.global __udivsi3
.set __udivsi3_i4, __udivsi3_i4i
.set __udivsi3, __udivsi3_i4i
.type __udivsi3_i4i, @function
__udivsi3_i4i:
Expand Down Expand Up @@ -174,7 +176,9 @@ div_r8_2:
rotcl r0

.global __sdivsi3_i4i
.global __sdivsi3_i4
.global __sdivsi3
.set __sdivsi3_i4, __sdivsi3_i4i
.set __sdivsi3, __sdivsi3_i4i
.type __sdivsi3_i4i, @function
/* This is link-compatible with a __sdivsi3 call,
Expand Down

0 comments on commit 9ef1002

Please sign in to comment.