diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2014-03-01 15:30:50 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2014-03-01 15:30:50 +0000 |
commit | 6e99daab4cdce246c87c47298babe0a8a5828c18 (patch) | |
tree | c554b839d12d4018d7381668a0363153ab9483d2 /compiler-rt/lib/builtins/fp_lib.h | |
parent | bbdd7640e885ce3a72bba05e0aaf2361751b9142 (diff) | |
download | bcm5719-llvm-6e99daab4cdce246c87c47298babe0a8a5828c18.tar.gz bcm5719-llvm-6e99daab4cdce246c87c47298babe0a8a5828c18.zip |
Consistently use COMPILER_RT_ABI for all public symbols.
Move prototypes into headers and fix a few inconsistencies.
llvm-svn: 202591
Diffstat (limited to 'compiler-rt/lib/builtins/fp_lib.h')
-rw-r--r-- | compiler-rt/lib/builtins/fp_lib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/lib/builtins/fp_lib.h b/compiler-rt/lib/builtins/fp_lib.h index 31714b194fb..1d93dc37954 100644 --- a/compiler-rt/lib/builtins/fp_lib.h +++ b/compiler-rt/lib/builtins/fp_lib.h @@ -143,4 +143,7 @@ static inline void wideRightShiftWithSticky(rep_t *hi, rep_t *lo, unsigned int c } } +COMPILER_RT_ABI fp_t __adddf3(fp_t a, fp_t b); +COMPILER_RT_ABI fp_t __addsf3(fp_t a, fp_t b); + #endif // FP_LIB_HEADER |