diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-08-29 21:49:35 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-08-29 21:49:35 +0000 |
commit | c5e54ac88791942e9bc27b013a7f0453134c058e (patch) | |
tree | 027731144c1b05fde9794fc3828e0ca7372d7c1b /gcc | |
parent | 5650fd392a55100f4d1c8cc656954305e4801e4b (diff) | |
download | gcc-c5e54ac88791942e9bc27b013a7f0453134c058e.zip gcc-c5e54ac88791942e9bc27b013a7f0453134c058e.tar.gz gcc-c5e54ac88791942e9bc27b013a7f0453134c058e.tar.bz2 |
* config.gcc (i386-*-vsta): Fix obvious bogosity.
From-SVN: r70922
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/config.gcc | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6968af4..3c70ed0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2003-08-29 Nathanael Nerode <neroden@gcc.gnu.org> + * config.gcc (i386-*-vsta): Fix obvious bogosity. + * fixinc/inclhack.def: Remove special cases for unsupported PTX 1 and PTX 2 (including i[34567]86-sequent-sysv3). * fixinc/fixincl.x: Regenerate. diff --git a/gcc/config.gcc b/gcc/config.gcc index 5df608e..9174965 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1161,8 +1161,8 @@ i[34567]86-*-sysv*) # Intel 80386's running system V tmake_file="$tmake_file i386/t-crtpic" ;; i386-*-vsta) # Intel 80386's running VSTa kernel - xm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/xm-vsta.h" - tm_file="${tm_file} i386/vsta.h" + xm_file="i386/xm-vsta.h" + tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/vsta.h" ;; i[34567]86-*-pe | i[34567]86-*-cygwin*) tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h" |