aboutsummaryrefslogtreecommitdiff
path: root/lib/libcompiler_rt
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2015-03-14 12:40:19 +0000
committerDimitry Andric <dim@FreeBSD.org>2015-03-14 12:40:19 +0000
commit25e141edd29a6cc403c59045107396b0d5e7e52c (patch)
tree22c96169e9ec91b9a5b31830347710371a91096d /lib/libcompiler_rt
parentcee9be4971a56f2a748eb78df97b72e42fe860ab (diff)
downloadsrc-25e141edd29a6cc403c59045107396b0d5e7e52c.tar.gz
src-25e141edd29a6cc403c59045107396b0d5e7e52c.zip
Pull in r231965 from upstream compiler-rt trunk (by Jörg Sonnenberger):
Refactor float to integer conversion to share the same code. 80bit Intel/PPC long double is excluded due to lacking support for the abstraction. Consistently provide saturation logic. Extend to long double on 128bit IEEE extended platforms. Initial patch with test cases from GuanHong Liu. Reviewed by Steve Canon. Differential Revision: http://reviews.llvm.org/D2804 Pull in r232107 from upstream compiler-rt trunk (by Ed Maste): Use signed int implementation for __fixint Requested by: emaste
Notes
Notes: svn path=/head/; revision=279981
Diffstat (limited to 'lib/libcompiler_rt')
-rw-r--r--lib/libcompiler_rt/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libcompiler_rt/Makefile b/lib/libcompiler_rt/Makefile
index e4eecbff7b24..d70549c6b19a 100644
--- a/lib/libcompiler_rt/Makefile
+++ b/lib/libcompiler_rt/Makefile
@@ -55,12 +55,18 @@ SRCF= absvdi2 \
fixdfti \
fixsfdi \
fixsfti \
+ fixtfdi \
+ fixtfsi \
+ fixtfti \
fixunsdfdi \
fixunsdfsi \
fixunsdfti \
fixunssfdi \
fixunssfsi \
fixunssfti \
+ fixunstfdi \
+ fixunstfsi \
+ fixunstfti \
fixunsxfdi \
fixunsxfsi \
fixunsxfti \