summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/mulsf3.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/lib/mulsf3.c')
-rw-r--r--compiler-rt/lib/mulsf3.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler-rt/lib/mulsf3.c b/compiler-rt/lib/mulsf3.c
index 56a1ee36ab2..6bd2f9dcae5 100644
--- a/compiler-rt/lib/mulsf3.c
+++ b/compiler-rt/lib/mulsf3.c
@@ -15,13 +15,6 @@
#define SINGLE_PRECISION
#include "fp_lib.h"
-// 32x32 --> 64 bit multiply
-static inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) {
- const uint64_t product = (uint64_t)a*b;
- *hi = product >> 32;
- *lo = product;
-}
-
fp_t __mulsf3(fp_t a, fp_t b) {
const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
OpenPOWER on IntegriCloud