summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/builtins/fp_mul_impl.inc
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/lib/builtins/fp_mul_impl.inc')
-rw-r--r--compiler-rt/lib/builtins/fp_mul_impl.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/builtins/fp_mul_impl.inc b/compiler-rt/lib/builtins/fp_mul_impl.inc
index ca8a0bb98b1..b34aa1b8f54 100644
--- a/compiler-rt/lib/builtins/fp_mul_impl.inc
+++ b/compiler-rt/lib/builtins/fp_mul_impl.inc
@@ -14,7 +14,7 @@
#include "fp_lib.h"
-static inline fp_t __mulXf3__(fp_t a, fp_t b) {
+static __inline fp_t __mulXf3__(fp_t a, fp_t b) {
const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
OpenPOWER on IntegriCloud