diff options
Diffstat (limited to 'lib/lshrdi3.c')
| -rw-r--r-- | lib/lshrdi3.c | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/lshrdi3.c b/lib/lshrdi3.c index 84525b78a1a83..911edb1914227 100644 --- a/lib/lshrdi3.c +++ b/lib/lshrdi3.c @@ -11,6 +11,7 @@   *   * ===----------------------------------------------------------------------===   */ +#include "abi.h"  #include "int_lib.h" @@ -18,7 +19,9 @@  /* Precondition:  0 <= b < bits_in_dword */ -di_int +ARM_EABI_FNALIAS(llsr, lshrdi3); + +COMPILER_RT_ABI di_int  __lshrdi3(di_int a, si_int b)  {      const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT);  | 
