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
diff --git a/lib/addsf3.c b/lib/addsf3.c
index 061528b..d4ee2c4 100644
--- a/lib/addsf3.c
+++ b/lib/addsf3.c
@@ -15,6 +15,10 @@
 #define SINGLE_PRECISION
 #include "fp_lib.h"
 
+#include "int_lib.h"
+
+ARM_EABI_FNALIAS(fadd, addsf3);
+
 fp_t __addsf3(fp_t a, fp_t b) {
 
     rep_t aRep = toRep(a);