diff options
Diffstat (limited to 'lib/builtins/floatdidf.c')
-rw-r--r-- | lib/builtins/floatdidf.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/builtins/floatdidf.c b/lib/builtins/floatdidf.c index 2b023ad08bebb..fccb29072407c 100644 --- a/lib/builtins/floatdidf.c +++ b/lib/builtins/floatdidf.c @@ -22,8 +22,6 @@ /* seee eeee eeee mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm */ -ARM_EABI_FNALIAS(l2d, floatdidf) - #ifndef __SOFT_FP__ /* Support for systems that have hardware floating-point; we'll set the inexact flag * as a side-effect of this computation. @@ -105,3 +103,10 @@ __floatdidf(di_int a) return fb.f; } #endif + +#if defined(__AEABI__) +AEABI_RTABI double __aeabi_l2d(di_int a) { + return __floatdidf(a); +} +#endif + |