summaryrefslogtreecommitdiff
path: root/lib/negsf2.c
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2011-04-19 17:51:24 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2011-04-19 17:51:24 +0000
commit37b97d1cf4501b94347e0b4e880f4b25825a289f (patch)
treedbb91e0d195eb76b635f537739d87d7e75a0196b /lib/negsf2.c
parente1f95ca8cf82f755d6c62a6dc5b745f2e5bdf7ba (diff)
downloadcompiler-rt-37b97d1cf4501b94347e0b4e880f4b25825a289f.tar.gz
compiler-rt-37b97d1cf4501b94347e0b4e880f4b25825a289f.tar.bz2
compiler-rt-37b97d1cf4501b94347e0b4e880f4b25825a289f.tar.xz
Add ARM EABI function aliases to routines
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@129768 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/negsf2.c')
-rw-r--r--lib/negsf2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/negsf2.c b/lib/negsf2.c
index d211f7cc..6b0e62c5 100644
--- a/lib/negsf2.c
+++ b/lib/negsf2.c
@@ -14,6 +14,10 @@
#define SINGLE_PRECISION
#include "fp_lib.h"
+#include "int_lib.h"
+
+ARM_EABI_FNALIAS(fneg, negsf2);
+
fp_t __negsf2(fp_t a) {
return fromRep(toRep(a) ^ signBit);
}