Module Name: src
Committed By: joerg
Date: Fri Jan 17 14:06:36 UTC 2014
Modified Files:
src/lib/libc/compiler_rt: Makefile.inc
Log Message:
__floatunsidf and __floatunsisf are provided by softfloat, but
__fixdfdi and __fixdfsi are not. So move them into the corresponding
chunks.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/lib/libc/compiler_rt/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/compiler_rt/Makefile.inc
diff -u src/lib/libc/compiler_rt/Makefile.inc:1.6 src/lib/libc/compiler_rt/Makefile.inc:1.7
--- src/lib/libc/compiler_rt/Makefile.inc:1.6 Fri Jan 17 14:03:31 2014
+++ src/lib/libc/compiler_rt/Makefile.inc Fri Jan 17 14:06:36 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.6 2014/01/17 14:03:31 joerg Exp $
+# $NetBSD: Makefile.inc,v 1.7 2014/01/17 14:06:36 joerg Exp $
COMPILER_RT_SRCDIR= ${NETBSDSRCDIR}/sys/external/bsd/compiler_rt/dist
@@ -43,14 +43,14 @@ GENERIC_SRCS+= \
divdf3.c \
divsf3.c \
extendsfdf2.c \
- fixdfdi.c \
- fixdfsi.c \
fixdfti.c \
fixsfdi.c \
fixsfsi.c \
fixsfti.c \
floatsidf.c \
floatsisf.c \
+ floatunsidf.c \
+ floatunsisf.c \
muldf3.c \
mulsf3.c \
subdf3.c \
@@ -74,6 +74,8 @@ GENERIC_SRCS+= \
divsi3.c \
divti3.c \
ffsti2.c \
+ fixdfdi.c \
+ fixdfsi.c \
fixunsdfdi.c \
fixunsdfsi.c \
fixunsdfti.c \
@@ -94,8 +96,6 @@ GENERIC_SRCS+= \
floatundidf.c \
floatundisf.c \
floatundixf.c \
- floatunsidf.c \
- floatunsisf.c \
floatuntidf.c \
floatuntisf.c \
floatuntixf.c \