diff options
author | Yoshinori Sato <ysato@users.sourceforge.jp> | 2015-06-20 14:02:19 +0900 |
---|---|---|
committer | Rich Felker <dalias@libc.org> | 2016-03-17 19:45:44 +0000 |
commit | 940d4113f3306e07a1f86541489b686d1a979d54 (patch) | |
tree | c1d78d1ae7991db8f0cd4ec2c20e7fd71fa6fb04 /arch/sh/kernel | |
parent | 2af7967a8c1cfe647d6a222be2d2e393025dcd6e (diff) | |
download | linux-next-940d4113f3306e07a1f86541489b686d1a979d54.tar.gz |
sh: New gcc support
New gcc (4.8 or later) used new shift helper functions.
So we need added new helper to private libgcc.
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Signed-off-by: Rich Felker <dalias@libc.org>
Diffstat (limited to 'arch/sh/kernel')
-rw-r--r-- | arch/sh/kernel/sh_ksyms_32.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/sh/kernel/sh_ksyms_32.c b/arch/sh/kernel/sh_ksyms_32.c index d77f2f6c7ff0..0b30b9dfc87f 100644 --- a/arch/sh/kernel/sh_ksyms_32.c +++ b/arch/sh/kernel/sh_ksyms_32.c @@ -34,6 +34,9 @@ DECLARE_EXPORT(__sdivsi3); DECLARE_EXPORT(__lshrsi3); DECLARE_EXPORT(__ashrsi3); DECLARE_EXPORT(__ashlsi3); +DECLARE_EXPORT(__lshrsi3_r0); +DECLARE_EXPORT(__ashrsi3_r0); +DECLARE_EXPORT(__ashlsi3_r0); DECLARE_EXPORT(__ashiftrt_r4_6); DECLARE_EXPORT(__ashiftrt_r4_7); DECLARE_EXPORT(__ashiftrt_r4_8); |