aboutsummaryrefslogtreecommitdiff
path: root/lib/negsf2.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/negsf2.c')
-rw-r--r--lib/negsf2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/negsf2.c b/lib/negsf2.c
index 6b0e62c5b..98f9fc0c0 100644
--- a/lib/negsf2.c
+++ b/lib/negsf2.c
@@ -10,14 +10,14 @@
// This file implements single-precision soft-float negation.
//
//===----------------------------------------------------------------------===//
+#include "abi.h"
#define SINGLE_PRECISION
#include "fp_lib.h"
-#include "int_lib.h"
-
ARM_EABI_FNALIAS(fneg, negsf2);
-fp_t __negsf2(fp_t a) {
+COMPILER_RT_ABI fp_t
+__negsf2(fp_t a) {
return fromRep(toRep(a) ^ signBit);
}