Rainer, I know you're in the middle of libgcc2_extras, so I don't want to commit something that conflicts and may well be out-of-date any minute. But these c6x bits got missed after the soft-fp move.
Please decide among you whether this patch should be applied in the meantime, or whether it should wait until your other bulk libgcc patches get applied. r~
diff --git a/gcc/config/c6x/eqd.c b/gcc/config/c6x/eqd.c index c19f886..d6b3201 100644 --- a/gcc/config/c6x/eqd.c +++ b/gcc/config/c6x/eqd.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/double.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/double.h> CMPtype __c6xabi_eqd(DFtype a, DFtype b) { diff --git a/gcc/config/c6x/eqf.c b/gcc/config/c6x/eqf.c index c87c92b..ee6dafc 100644 --- a/gcc/config/c6x/eqf.c +++ b/gcc/config/c6x/eqf.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/single.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/single.h> CMPtype __c6xabi_eqf(SFtype a, SFtype b) { diff --git a/gcc/config/c6x/ged.c b/gcc/config/c6x/ged.c index 30590b2..2089904 100644 --- a/gcc/config/c6x/ged.c +++ b/gcc/config/c6x/ged.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/double.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/double.h> CMPtype __c6xabi_ged(DFtype a, DFtype b) { diff --git a/gcc/config/c6x/gef.c b/gcc/config/c6x/gef.c index 0a22b13..ce4c1c0 100644 --- a/gcc/config/c6x/gef.c +++ b/gcc/config/c6x/gef.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/single.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/single.h> CMPtype __c6xabi_gef(SFtype a, SFtype b) { diff --git a/gcc/config/c6x/gtd.c b/gcc/config/c6x/gtd.c index 042192b..6d45aef 100644 --- a/gcc/config/c6x/gtd.c +++ b/gcc/config/c6x/gtd.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/double.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/double.h> CMPtype __c6xabi_gtd(DFtype a, DFtype b) { diff --git a/gcc/config/c6x/gtf.c b/gcc/config/c6x/gtf.c index 0d0e10a..c6a108a 100644 --- a/gcc/config/c6x/gtf.c +++ b/gcc/config/c6x/gtf.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/single.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/single.h> CMPtype __c6xabi_gtf(SFtype a, SFtype b) { diff --git a/gcc/config/c6x/led.c b/gcc/config/c6x/led.c index b97f3d1..c99e29e 100644 --- a/gcc/config/c6x/led.c +++ b/gcc/config/c6x/led.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/double.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/double.h> CMPtype __c6xabi_led(DFtype a, DFtype b) { diff --git a/gcc/config/c6x/lef.c b/gcc/config/c6x/lef.c index d234a18..ce2c16f 100644 --- a/gcc/config/c6x/lef.c +++ b/gcc/config/c6x/lef.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/single.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/single.h> CMPtype __c6xabi_lef(SFtype a, SFtype b) { diff --git a/gcc/config/c6x/ltd.c b/gcc/config/c6x/ltd.c index 5518583..d4de2586 100644 --- a/gcc/config/c6x/ltd.c +++ b/gcc/config/c6x/ltd.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/double.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/double.h> CMPtype __c6xabi_ltd(DFtype a, DFtype b) { diff --git a/gcc/config/c6x/ltf.c b/gcc/config/c6x/ltf.c index 7ffe9f8..2fe15b9 100644 --- a/gcc/config/c6x/ltf.c +++ b/gcc/config/c6x/ltf.c @@ -27,8 +27,8 @@ License along with GCC; see the file COPYING.LIB. If not see <http://www.gnu.org/licenses/>. */ -#include "config/soft-fp/soft-fp.h" -#include "config/soft-fp/single.h" +#include <soft-fp/soft-fp.h> +#include <soft-fp/single.h> CMPtype __c6xabi_ltf(SFtype a, SFtype b) {