aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-04-12 19:24:39 +0000
committerJeff Law <law@gcc.gnu.org>1998-04-12 13:24:39 -0600
commit1be12a4a7bd8e9a639a61184a52d02b42554c0ab (patch)
tree61b79c97ea794b335c988997397036109b4c71f5
parentc0ef7ee37e0e3af8a887911fb4273ae2234d5fb6 (diff)
downloadgcc-1be12a4a7bd8e9a639a61184a52d02b42554c0ab.zip
gcc-1be12a4a7bd8e9a639a61184a52d02b42554c0ab.tar.gz
gcc-1be12a4a7bd8e9a639a61184a52d02b42554c0ab.tar.bz2
configure.in (mips-*-ecoff): Do not mention mips/mips.h in tm_files.
* configure.in (mips-*-ecoff): Do not mention mips/mips.h in tm_files. * mips/ecoff.h: Include "mips/mips.h". From-SVN: r19149
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/mips/ecoff.h1
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.in2
4 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ae40ff7..ae34aaa 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Sun Apr 12 20:23:03 1998 Jeffrey A Law (law@cygnus.com)
+
+ * configure.in (mips-*-ecoff): Do not mention mips/mips.h in tm_files.
+ * mips/ecoff.h: Include "mips/mips.h".
+
Sat Apr 11 22:42:54 PDT 1998 Jeff Law (law@cygnus.com)
* version.c: Bump for snapshot.
diff --git a/gcc/config/mips/ecoff.h b/gcc/config/mips/ecoff.h
index 8da0ae6..dcc00a4 100644
--- a/gcc/config/mips/ecoff.h
+++ b/gcc/config/mips/ecoff.h
@@ -20,7 +20,6 @@ the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
/* US Software GOFAST library support. */
-#include "gofast.h"
#define INIT_SUBTARGET_OPTABS INIT_GOFAST_OPTABS
#include "mips/mips.h"
diff --git a/gcc/configure b/gcc/configure
index 0e7f970..c9ce370 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -3734,7 +3734,7 @@ for machine in $build $host $target; do
tmake_file=mips/t-ecoff
;;
mips-*-ecoff*)
- tm_file="${tm_file} gofast.h mips/ecoff.h"
+ tm_file="gofast.h mips/ecoff.h"
if [ x$stabs = xyes ]; then
tm_file="${tm_file} dbx.h"
fi
diff --git a/gcc/configure.in b/gcc/configure.in
index 9dc0b77..9d33463 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -2045,7 +2045,7 @@ for machine in $build $host $target; do
tmake_file=mips/t-ecoff
;;
mips-*-ecoff*)
- tm_file="${tm_file} gofast.h mips/ecoff.h"
+ tm_file="gofast.h mips/ecoff.h"
if [[ x$stabs = xyes ]]; then
tm_file="${tm_file} dbx.h"
fi