Makefile.in (FPBIT_FUNCS, [...]): Add _sf_to_usi _df_to_usi.

* Makefile.in (FPBIT_FUNCS, DPBIT_FUNCS): Add _sf_to_usi
    _df_to_usi.  Required by some targets, so US_SOFTWARE_GOFAST calls to
    functions like dptoul will be resolved.
    (libgcc2.a): Make sure that the object files from DPBIT are named
    differently (prefix `_dp') from those that would be coming from
    FPBIT.

From-SVN: r30828
This commit is contained in:
Brendan Kehoe 1999-12-08 11:44:47 +00:00 committed by Brendan Kehoe
parent 5b68c389aa
commit 8dcd865f3b
2 changed files with 14 additions and 5 deletions

View File

@ -1,3 +1,12 @@
1999-12-08 Brendan Kehoe <brendan@cygnus.com>
* Makefile.in (FPBIT_FUNCS, DPBIT_FUNCS): Add _sf_to_usi
_df_to_usi. Required by some targets, so US_SOFTWARE_GOFAST calls to
functions like dptoul will be resolved.
(libgcc2.a): Make sure that the object files from DPBIT are named
differently (prefix `_dp') from those that would be coming from
FPBIT.
1999-12-08 Alexandre Oliva <oliva@lsd.ic.unicamp.br>, Jakub Jelinek <jakub@redhat.com>
* configure.in: When target is sparc* and tm_file contains 64,

View File

@ -724,12 +724,12 @@ LIB2FUNCS_EH = _eh
FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
_fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
_lt_sf _le_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
_sf_to_df _thenan_sf
_sf_to_df _thenan_sf _sf_to_usi _df_to_usi
DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
_fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
_lt_df _le_df _si_to_df _df_to_si _negate_df _make_df \
_df_to_sf _thenan_df
_df_to_sf _thenan_df _sf_to_usi _df_to_usi
# The files that "belong" in CONFIG_H are deliberately omitted
# because having them there would not be useful in actual practice.
@ -1088,10 +1088,10 @@ libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(FPBIT) $(DPBIT) $(LIB2ADD) \
do \
echo $${name}; \
$(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
-DFINE_GRAINED_LIBRARIES $(DPBIT) -o $${name}$(objext); \
-DFINE_GRAINED_LIBRARIES $(DPBIT) -o _dp$${name}$(objext); \
if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
$(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a $${name}$(objext); \
rm -f $${name}$(objext); \
$(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a _dp$${name}$(objext); \
rm -f _dp$${name}$(objext); \
done; \
else true; fi;
# Some shells crash when a loop has no items.