aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2011-08-20 15:28:19 -0700
committerRichard Henderson <rth@gcc.gnu.org>2011-08-20 15:28:19 -0700
commit2b28ecea19a7767dfca4cacead1f30386f963eb7 (patch)
tree0301eb937e805951ef3942157fe5edd7fefdcb18 /gcc
parent9ce7ad7f3a7f61fd62ac81544af04f95368f597f (diff)
downloadgcc-2b28ecea19a7767dfca4cacead1f30386f963eb7.zip
gcc-2b28ecea19a7767dfca4cacead1f30386f963eb7.tar.gz
gcc-2b28ecea19a7767dfca4cacead1f30386f963eb7.tar.bz2
eqd.c, [...]: Adjust include path for soft-fp.
* config/c6x/eqd.c, config/c6x/eqf.c, config/c6x/ged.c, config/c6x/gef.c, config/c6x/gtd.c, config/c6x/gtf.c, config/c6x/led.c, config/c6x/lef.c, config/c6x/ltd.c, config/c6x/ltf.c: Adjust include path for soft-fp. From-SVN: r177934
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/c6x/eqd.c4
-rw-r--r--gcc/config/c6x/eqf.c4
-rw-r--r--gcc/config/c6x/ged.c4
-rw-r--r--gcc/config/c6x/gef.c4
-rw-r--r--gcc/config/c6x/gtd.c4
-rw-r--r--gcc/config/c6x/gtf.c4
-rw-r--r--gcc/config/c6x/led.c4
-rw-r--r--gcc/config/c6x/lef.c4
-rw-r--r--gcc/config/c6x/ltd.c4
-rw-r--r--gcc/config/c6x/ltf.c4
11 files changed, 27 insertions, 20 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index be56639..3fa27e3 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2011-08-20 Richard Henderson <rth@redhat.com>
+
+ * config/c6x/eqd.c, config/c6x/eqf.c, config/c6x/ged.c,
+ config/c6x/gef.c, config/c6x/gtd.c, config/c6x/gtf.c,
+ config/c6x/led.c, config/c6x/lef.c, config/c6x/ltd.c,
+ config/c6x/ltf.c: Adjust include path for soft-fp.
+
2011-08-20 H.J. Lu <hongjiu.lu@intel.com>
PR other/46770
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)
{