diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-09-18 20:21:41 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-09-18 20:21:41 +0000 |
commit | feb8e6be641f88ad65d9d6cf06e26c8d41f28fb8 (patch) | |
tree | a787eed36741a78fb40ca0d1772b592cd96b21cc /lib/libcompiler_rt/muldi3.c | |
parent | 5095a11a2dcd52bd87ec96c220c29981d2796c54 (diff) |
Update to compiler-rt 6.0.0.
tested by naddy@
ok kettenis@
Diffstat (limited to 'lib/libcompiler_rt/muldi3.c')
-rw-r--r-- | lib/libcompiler_rt/muldi3.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libcompiler_rt/muldi3.c b/lib/libcompiler_rt/muldi3.c index 6818a9e2f72..a187315e916 100644 --- a/lib/libcompiler_rt/muldi3.c +++ b/lib/libcompiler_rt/muldi3.c @@ -54,8 +54,5 @@ __muldi3(di_int a, di_int b) } #if defined(__ARM_EABI__) -AEABI_RTABI di_int __aeabi_lmul(di_int a, di_int b) { - return __muldi3(a, b); -} +AEABI_RTABI di_int __aeabi_lmul(di_int a, di_int b) COMPILER_RT_ALIAS(__muldi3); #endif - |