diff options
author | 2018-09-18 20:21:40 +0000 | |
---|---|---|
committer | 2018-09-18 20:21:40 +0000 | |
commit | 3d56ebce3ebb9c8a172fe01306f9897260997ec2 (patch) | |
tree | b429f71c3354e03b64d1418b8bc7d7eea2265b45 /lib/libcompiler_rt/lshrdi3.c | |
parent | sync (diff) | |
download | wireguard-openbsd-3d56ebce3ebb9c8a172fe01306f9897260997ec2.tar.xz wireguard-openbsd-3d56ebce3ebb9c8a172fe01306f9897260997ec2.zip |
Update to compiler-rt 6.0.0.
tested by naddy@
ok kettenis@
Diffstat (limited to 'lib/libcompiler_rt/lshrdi3.c')
-rw-r--r-- | lib/libcompiler_rt/lshrdi3.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libcompiler_rt/lshrdi3.c b/lib/libcompiler_rt/lshrdi3.c index becbbef4eb0..67b2a766834 100644 --- a/lib/libcompiler_rt/lshrdi3.c +++ b/lib/libcompiler_rt/lshrdi3.c @@ -41,8 +41,5 @@ __lshrdi3(di_int a, si_int b) } #if defined(__ARM_EABI__) -AEABI_RTABI di_int __aeabi_llsr(di_int a, si_int b) { - return __lshrdi3(a, b); -} +AEABI_RTABI di_int __aeabi_llsr(di_int a, si_int b) COMPILER_RT_ALIAS(__lshrdi3); #endif - |