diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-21 13:45:26 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-21 13:45:26 +0000 |
commit | da79e8427622c5a4c723aa5192e548dc156bd036 (patch) | |
tree | 1ef1decaa2812c4f42d75dc72daa65fb97a6bcf6 /gcc/config/mn10300/t-mn10300 | |
parent | 0dd7e0b038886d063e64e07cc4cd38f0d6f65091 (diff) | |
download | gcc-da79e8427622c5a4c723aa5192e548dc156bd036.tar.gz |
L
* Makefile.in (FPBIT_FUNCS, DPBIT_FUNCS): Define.
(libgcc2.a): Depend on $(DPBIT) and $(FPBIT). Add rules to
generate more fine grained floating point emulation libraries.
* config/fp-bit.c: Add protecting #ifdef to all functions so
that they can be compiled separately. If !FINE_GRAINED_LIBRARIES,
then compile all suitable functions.
(pack_d, unpack_d, fpcmp_parts): Add declarations, define with two
underscores to avoid namespace pollution.
* t-mn10200 (LIB2FUNCS_EXTRA): Remove fp-bit.c
(FPBIT): Define.
* t-mn10300 (LIB2FUNCS_EXTRA): Remove fp-bit.c and dp-bit.c
(FPBIT): Define.
(DPBIT): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17165 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mn10300/t-mn10300')
-rw-r--r-- | gcc/config/mn10300/t-mn10300 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/mn10300/t-mn10300 b/gcc/config/mn10300/t-mn10300 index 379b90fca7f..7e94656c223 100644 --- a/gcc/config/mn10300/t-mn10300 +++ b/gcc/config/mn10300/t-mn10300 @@ -4,7 +4,10 @@ CROSS_LIBGCC1=libgcc1.null # These are really part of libgcc1, but this will cause them to be # built correctly, so... -LIB2FUNCS_EXTRA = fp-bit.c dp-bit.c +# We want fine grained libraries, so use the new code to build the +# floating point emulation libraries. +FPBIT = fp-bit.c +DPBIT = dp-bit.c dp-bit.c: $(srcdir)/config/fp-bit.c echo '#ifdef __LITTLE_ENDIAN__' > dp-bit.c |