diff options
author | David Schultz <das@FreeBSD.org> | 2011-10-21 06:40:36 +0000 |
---|---|---|
committer | David Schultz <das@FreeBSD.org> | 2011-10-21 06:40:36 +0000 |
commit | 6232589aeb9b7c1c1e731d9ec324cfdb57202a48 (patch) | |
tree | c48465604c7967f5162a2c5f32ab24721a37e96c /lib/libc/ia64/gen/Makefile.inc | |
parent | 417c551014c2c138b57a2ea5133162a2b194fb3e (diff) |
Replace a proliferation of buggy MD implementations of modf() with a
working MI one. The MI one only needs to be overridden on machines
with non-IEEE754 arithmetic. (The last supported one was the VAX.)
It can also be overridden if someone comes up with a faster one that
actually passes the regression tests -- but this is harder than it sounds.
Notes
Notes:
svn path=/head/; revision=226606
Diffstat (limited to 'lib/libc/ia64/gen/Makefile.inc')
-rw-r--r-- | lib/libc/ia64/gen/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/ia64/gen/Makefile.inc b/lib/libc/ia64/gen/Makefile.inc index 5358ea8c8e37..685ab86c9f46 100644 --- a/lib/libc/ia64/gen/Makefile.inc +++ b/lib/libc/ia64/gen/Makefile.inc @@ -3,7 +3,7 @@ SRCS+= __divdf3.S __divdi3.S __divsf3.S __divsi3.S __moddi3.S __modsi3.S \ __udivdi3.S __udivsi3.S __umoddi3.S __umodsi3.S _mcount.S _set_tp.c \ _setjmp.S fabs.S flt_rounds.c fpgetmask.c fpgetround.c fpsetmask.c \ - fpsetround.c infinity.c ldexp.c makecontext.c modf.c setjmp.S \ + fpsetround.c infinity.c ldexp.c makecontext.c setjmp.S \ signalcontext.c sigsetjmp.S # The following may go away if function _Unwind_FindTableEntry() |