Currently LIB2FUNCS_EXCLUDE is ignoref for the bits of libgcc*.a
that come from fp-bit.c, fixed by this patch.

Ok to install?

Johann

        * Makefile.in (FPBIT_FUNCS): filter-out LIB2FUNCS_EXCLUDE.
        (DPBIT_FUNCS): Ditto.
        (TPBIT_FUNCS): Ditto.
Index: libgcc/Makefile.in
===================================================================
--- libgcc/Makefile.in	(revision 190873)
+++ libgcc/Makefile.in	(working copy)
@@ -516,6 +516,10 @@ FPBIT_FUNCS := $(filter-out _sf_to_tf,$(
 DPBIT_FUNCS := $(filter-out _df_to_tf,$(DPBIT_FUNCS))
 endif
 
+FPBIT_FUNCS := $(filter-out $(LIB2FUNCS_EXCLUDE),$(FPBIT_FUNCS))
+DPBIT_FUNCS := $(filter-out $(LIB2FUNCS_EXCLUDE),$(DPBIT_FUNCS))
+TPBIT_FUNCS := $(filter-out $(LIB2FUNCS_EXCLUDE),$(TPBIT_FUNCS))
+
 fpbit-src := $(srcdir)/fp-bit.c
 
 # Build FPBIT.

Reply via email to