aboutsummaryrefslogtreecommitdiff
path: root/lib/muldf3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/muldf3.c')
-rw-r--r--lib/muldf3.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/muldf3.c b/lib/muldf3.c
index 85672e584436..f402cfb39d38 100644
--- a/lib/muldf3.c
+++ b/lib/muldf3.c
@@ -11,11 +11,15 @@
// with the IEEE-754 default rounding (to nearest, ties to even).
//
//===----------------------------------------------------------------------===//
+#include "abi.h"
#define DOUBLE_PRECISION
#include "fp_lib.h"
-fp_t __muldf3(fp_t a, fp_t b) {
+ARM_EABI_FNALIAS(dmul, muldf3);
+
+COMPILER_RT_ABI fp_t
+__muldf3(fp_t a, fp_t b) {
const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;