diff options
author | obrien <obrien@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-03 07:56:42 +0000 |
---|---|---|
committer | obrien <obrien@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-03 07:56:42 +0000 |
commit | aae1638c91062a992adaa1c26322bd3965984325 (patch) | |
tree | 38c1daa4d71c1f6973400d5f09adbf72466f0e77 /gcc | |
parent | bd7cbd7b71cbf368ab287b822c56610c707d14b7 (diff) | |
download | gcc-aae1638c91062a992adaa1c26322bd3965984325.tar.gz |
2001-05-02 David O'Brien <obrien@FreeBSD.org>
* config.gcc, config/rs6000/aix51.h, config/rs6000/mach.h: Do not
directly include rs6000/rs6000.h. Instead do it in tm.h.
Approved by: Geoff Keating <geoffk@geoffk.org>
Message-ID: <jmae4vtdi0.fsf@geoffk.org>
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41782 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config.gcc | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/aix51.h | 3 | ||||
-rw-r--r-- | gcc/config/rs6000/mach.h | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a2dee76ffda..a1418e8b348 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-05-02 David O'Brien <obrien@FreeBSD.org> + + * config.gcc, config/rs6000/aix51.h, config/rs6000/mach.h: Do not + directly include rs6000/rs6000.h. Instead do it in tm.h. + 2001-05-02 Stan Shebs <shebs@apple.com> * objc/objc-act.c (STRING_OBJECT_CLASS_NAME): Default to diff --git a/gcc/config.gcc b/gcc/config.gcc index 4f0d3dc6e56..ba6c0ffbf63 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2741,7 +2741,7 @@ rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*) ;; rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*) xm_defines=POSIX - tm_file="${tm_file} rs6000/aix.h rs6000/aix51.h" + tm_file="${tm_file} rs6000/aix.h rs6000/rs6000.h rs6000/aix.h rs6000/aix51.h" tmake_file=rs6000/t-aix43 float_format=none use_collect2=yes @@ -2760,7 +2760,7 @@ rs6000-bull-bosx) use_collect2=yes ;; rs6000-*-mach*) - tm_file=rs6000/mach.h + tm_file="rs6000/rs6000.h rs6000/mach.h" xm_defines=POSIX use_collect2=yes ;; diff --git a/gcc/config/rs6000/aix51.h b/gcc/config/rs6000/aix51.h index da6361c1615..5875956b7b7 100644 --- a/gcc/config/rs6000/aix51.h +++ b/gcc/config/rs6000/aix51.h @@ -21,9 +21,6 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "rs6000/rs6000.h" -#include "rs6000/aix.h" - /* AIX V5 and above support 64-bit executables. */ #undef SUBSUBTARGET_SWITCHES #define SUBSUBTARGET_SWITCHES \ diff --git a/gcc/config/rs6000/mach.h b/gcc/config/rs6000/mach.h index dfa23e6032c..453fe77e4c5 100644 --- a/gcc/config/rs6000/mach.h +++ b/gcc/config/rs6000/mach.h @@ -22,8 +22,6 @@ Boston, MA 02111-1307, USA. */ #define TARGET_AIX 0 -#include "rs6000/rs6000.h" - /* We don't define AIX under MACH; instead we define `unix'. */ #undef CPP_PREDEFINES #define CPP_PREDEFINES "-Drios -D_IBMR2 -Dunix -Asystem=unix -Asystem=mach -Acpu=rs6000 -Amachine=rs6000" |