diff options
author | Wolfgang Denk <wd@denx.de> | 2009-08-06 21:29:59 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-08-09 23:08:59 +0200 |
commit | 59b4d7471c42e955bd9846892a0cc7478171778d (patch) | |
tree | 15db0fed51aa56d6337019c1002e14c559d08f11 /lib_arm/_ashrdi3.S | |
parent | 197324d7d998a791e5137b8176981b4af25220ae (diff) | |
download | u-boot-imx-59b4d7471c42e955bd9846892a0cc7478171778d.zip u-boot-imx-59b4d7471c42e955bd9846892a0cc7478171778d.tar.gz u-boot-imx-59b4d7471c42e955bd9846892a0cc7478171778d.tar.bz2 |
ARM EABI: add new helper functions resp. function names
The ARM EABI defines new names for GCC helper functions,
and GCC seems to need some new functions as well.
This patch is a minimal-invasive approach to fix problems with EABI
conformant tool chains (to be used with "USE_PRIVATE_LIBGCC=yes").
Signed-off-by: Wolfgang Denk <wd@denx.de>
Tested-by: Dirk Behme <dirk.behme@googlemail.com>
Diffstat (limited to 'lib_arm/_ashrdi3.S')
-rw-r--r-- | lib_arm/_ashrdi3.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib_arm/_ashrdi3.S b/lib_arm/_ashrdi3.S index 5edbcb3..671ac87 100644 --- a/lib_arm/_ashrdi3.S +++ b/lib_arm/_ashrdi3.S @@ -35,7 +35,9 @@ Boston, MA 02110-1301, USA. */ #endif .globl __ashrdi3 +.globl __aeabi_lasr __ashrdi3: +__aeabi_lasr: subs r3, r2, #32 rsb ip, r2, #32 |