diff options
author | Stan Cox <coxs@gnu.org> | 1997-03-18 22:03:31 +0000 |
---|---|---|
committer | Stan Cox <coxs@gnu.org> | 1997-03-18 22:03:31 +0000 |
commit | 4cd77633ca2ce8e5ee448ffeb85a89bc97aa46fe (patch) | |
tree | 39c01cda9d30006988ab1cacf037e9e2f3505508 /gcc | |
parent | d4e2f547d8872f5a2224fe74820a6395db157947 (diff) | |
download | gcc-4cd77633ca2ce8e5ee448ffeb85a89bc97aa46fe.zip gcc-4cd77633ca2ce8e5ee448ffeb85a89bc97aa46fe.tar.gz gcc-4cd77633ca2ce8e5ee448ffeb85a89bc97aa46fe.tar.bz2 |
Remove TARGET_CPU_DEFAULT reference.
From-SVN: r13740
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/freebsd-elf.h | 4 | ||||
-rw-r--r-- | gcc/config/i386/linux-aout.h | 4 | ||||
-rw-r--r-- | gcc/config/i386/linux-oldld.h | 4 | ||||
-rw-r--r-- | gcc/config/i386/linux.h | 6 |
4 files changed, 1 insertions, 17 deletions
diff --git a/gcc/config/i386/freebsd-elf.h b/gcc/config/i386/freebsd-elf.h index 9235ce5..55bf23c 100644 --- a/gcc/config/i386/freebsd-elf.h +++ b/gcc/config/i386/freebsd-elf.h @@ -143,11 +143,7 @@ Boston, MA 02111-1307, USA. */ #define CPP_PREDEFINES "-Dunix -D__ELF__ -D__FreeBSD__=2 -Asystem(FreeBSD)" #undef CPP_SPEC -#if TARGET_CPU_DEFAULT == 2 #define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE}" -#else -#define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE}" -#endif #undef LIB_SPEC #if 1 diff --git a/gcc/config/i386/linux-aout.h b/gcc/config/i386/linux-aout.h index b201dcf..f7d807a 100644 --- a/gcc/config/i386/linux-aout.h +++ b/gcc/config/i386/linux-aout.h @@ -31,11 +31,7 @@ Boston, MA 02111-1307, USA. */ #define CPP_PREDEFINES "-Dunix -Dlinux -Asystem(posix)" #undef CPP_SPEC -#if TARGET_CPU_DEFAULT == 2 #define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE}" -#else -#define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE}" -#endif #undef SIZE_TYPE #define SIZE_TYPE "unsigned int" diff --git a/gcc/config/i386/linux-oldld.h b/gcc/config/i386/linux-oldld.h index 06de9e4..a12ab59 100644 --- a/gcc/config/i386/linux-oldld.h +++ b/gcc/config/i386/linux-oldld.h @@ -31,11 +31,7 @@ Boston, MA 02111-1307, USA. */ #define CPP_PREDEFINES "-Dunix -Dlinux -Asystem(posix)" #undef CPP_SPEC -#if TARGET_CPU_DEFAULT == 2 #define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE}" -#else -#define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE}" -#endif #undef SIZE_TYPE #define SIZE_TYPE "unsigned int" diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h index 4ef9c15..ef1f7f4 100644 --- a/gcc/config/i386/linux.h +++ b/gcc/config/i386/linux.h @@ -151,11 +151,7 @@ Boston, MA 02111-1307, USA. */ #define CPP_PREDEFINES "-D__ELF__ -Dunix -Dlinux -Asystem(posix)" #undef CPP_SPEC -#if TARGET_CPU_DEFAULT == 2 -#define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{!m386:-D__i486__} %{posix:-D_POSIX_SOURCE}" -#else -#define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{m486:-D__i486__} %{posix:-D_POSIX_SOURCE}" -#endif +#define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE}" /* Provide a LINK_SPEC appropriate for Linux. Here we provide support for the special GCC options -static and -shared, which allow us to |